snapcast/common/timeDefs.h
(no author) fe79a78efe chonos stuff
git-svn-id: svn://elaine/murooma/trunk@297 d8a302eb-03bc-478d-80e4-98257eca68ef
2014-09-25 21:21:32 +00:00

19 lines
353 B
C++

#ifndef TIME_DEFS_H
#define TIME_DEFS_H
#include <chrono>
namespace chronos
{
typedef std::chrono::high_resolution_clock hrc;
typedef std::chrono::time_point<hrc> time_point_hrc;
typedef std::chrono::seconds sec;
typedef std::chrono::milliseconds msec;
typedef std::chrono::microseconds usec;
typedef std::chrono::nanoseconds nsec;
}
#endif