Get current time in milliseconds using C++ and Boost
You can use boost::posix_time::time_duration to get the time range. E.g like this boost::posix_time::time_duration diff = tick – now; diff.total_milliseconds(); And to get a higher resolution you can change the clock you are using. For example to the boost::posix_time::microsec_clock, though this can be OS dependent. On Windows, for example, boost::posix_time::microsecond_clock has milisecond resolution, not microsecond. An … Read more