Revision 9cb381ec server/include/Animation.h

View differences:

server/include/Animation.h
28 28

  
29 29
#pragma once
30 30
#include <humotion/gaze_state.h>
31
#include "boost/date_time/posix_time/posix_time.hpp"
32
#include <boost/thread/thread_time.hpp>
33
#include <boost/thread/thread.hpp>
31
#include <chrono>
34 32

  
35 33
class Animation{
36 34
public:
......
90 88

  
91 89
    bool active;
92 90
    unsigned int repetition_now;
93
    boost::system_time end_time;
94
    boost::system_time start_time;
91
    std::chrono::time_point<std::chrono::steady_clock> end_time;
92
    std::chrono::time_point<std::chrono::steady_clock> start_time;
95 93
};
96

  
97

  

Also available in: Unified diff