5 #ifndef RECAST_TIMEUTILS_H
6 #define RECAST_TIMEUTILS_H
22 const auto now = std::chrono::system_clock::now();
23 const auto duration = now.time_since_epoch();
24 const auto millis = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
39 #endif //RECAST_TIMEUTILS_H
long long int currentTimeMillis()
Definition: TimeUtils.hpp:21
double currentTimeSeconds()
Definition: TimeUtils.hpp:33