mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-09 07:06:41 +02:00
18 lines
313 B
C++
18 lines
313 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;
|
|
}
|
|
|
|
|
|
#endif
|
|
|
|
|