ifm3d
time.h
1 // -*- c++ -*-
2 /*
3  * Copyright 2023-present ifm electronic, gmbh
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef IFM3D_COMMON_LOGGING_TIME_H
8 #define IFM3D_COMMON_LOGGING_TIME_H
9 
10 #include <chrono>
11 
12 namespace ifm3d
13 {
14  using logging_clock = std::chrono::system_clock;
15  using logging_timepoint = std::chrono::time_point<std::chrono::system_clock>;
16 }
17 
18 #endif // IFM3D_COMMON_LOGGING_TIME_H