xrpld
Loading...
Searching...
No Matches
basic_seconds_clock.h
1#pragma once
2
3#include <chrono>
4
5namespace beast {
6
17{
18public:
20
21 explicit BasicSecondsClock() = default;
22
23 using rep = Clock::rep;
24 using period = Clock::period;
25 using duration = Clock::duration;
26 using time_point = Clock::time_point;
27
28 static bool const is_steady = // NOLINT(readability-identifier-naming)
29 Clock::is_steady;
30
31 static time_point
32 now();
33};
34
35} // namespace beast
std::chrono::steady_clock Clock