Remove building with NOCRYPTO option
[minix3.git] / external / bsd / libc++ / dist / libcxx / test / utilities / time / clock.h
blobc72470c9cc8d394a16a9adf2c0302d33258cc16e
1 //===----------------------------------------------------------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
10 #ifndef CLOCK_H
11 #define CLOCK_H
13 #include <chrono>
15 class Clock
17 typedef std::chrono::nanoseconds duration;
18 typedef duration::rep rep;
19 typedef duration::period period;
20 typedef std::chrono::time_point<Clock, duration> time_point;
21 static const bool is_steady = false;
23 static time_point now();
26 #endif // CLOCK_H