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