ctf: add ClkClsConfig and use it
[babeltrace.git] / src / plugins / ctf / common / src / clk-cls-cfg.hpp
CommitLineData
c942e7a2
SM
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
12namespace ctf {
13namespace src {
14
15struct 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.025565 seconds and 4 git commands to generate.