tools/llvm: Do not build with symbols
[minix3.git] / external / bsd / libc++ / dist / libcxx / test / utilities / time / clock.h
blobec99f26dd3fe81b4aeec2f695a9d789313930d64
1 #ifndef CLOCK_H
2 #define CLOCK_H
4 #include <chrono>
6 class Clock
8 typedef std::chrono::nanoseconds duration;
9 typedef duration::rep rep;
10 typedef duration::period period;
11 typedef std::chrono::time_point<Clock, duration> time_point;
12 static const bool is_steady = false;
14 static time_point now();
17 #endif // CLOCK_H