mqtt_cpp
time_point_t.hpp
Go to the documentation of this file.
1 // Copyright Takatoshi Kondo 2020
2 //
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #if !defined(MQTT_TIME_POINT_T_HPP)
8 #define MQTT_TIME_POINT_T_HPP
9 
10 #include <mqtt/config.hpp>
11 
12 #include <chrono>
13 
14 namespace MQTT_NS {
15 
16 using time_point_t = std::chrono::time_point<std::chrono::steady_clock>;
17 
18 } // namespace MQTT_NS
19 
20 #endif // MQTT_TIME_POINT_T_HPP
Definition: any.hpp:27
std::chrono::time_point< std::chrono::steady_clock > time_point_t
Definition: time_point_t.hpp:16