1 //
2 // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
3 //
4 // Distributed under the Boost Software License, Version 1.0. (See accompanying
5 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 //
7 #pragma once
8 
9 namespace td {
10 
11 struct Clocks {
12   static double monotonic();
13 
14   static double system();
15 
16   static int tz_offset();
17 };
18 
19 }  // namespace td
20