cpp-common/bt2c/fmt.hpp: use `wise_enum::string_type` in `EnableIfIsWiseEnum` definition
[babeltrace.git] / src / plugins / ctf / common / src / clk-cls-cfg.hpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright (c) 2022 EfficiOS Inc. and Linux Foundation
5 */
6
7 #ifndef CTF_COMMON_SRC_CLK_CLS_CFG_HPP
8 #define CTF_COMMON_SRC_CLK_CLS_CFG_HPP
9
10 #include <cstdint>
11
12 namespace ctf {
13 namespace src {
14
15 struct ClkClsCfg
16 {
17 std::int64_t offsetSec = 0;
18 std::int64_t offsetNanoSec = 0;
19 bool forceOriginIsUnixEpoch = false;
20 };
21
22 } /* namespace src */
23 } /* namespace ctf */
24
25 #endif /* CTF_COMMON_SRC_CLK_CLS_CFG_HPP */
This page took 0.029074 seconds and 4 git commands to generate.