.gitignore: add some missing files
[babeltrace.git] / src / plugins / ctf / common / src / clk-cls-cfg.hpp
... / ...
CommitLineData
1/*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright (c) 2022 EfficiOS Inc. and Linux Foundation
5 */
6
7#ifndef BABELTRACE_PLUGINS_CTF_COMMON_SRC_CLK_CLS_CFG_HPP
8#define BABELTRACE_PLUGINS_CTF_COMMON_SRC_CLK_CLS_CFG_HPP
9
10#include <cstdint>
11
12namespace ctf {
13namespace src {
14
15struct ClkClsCfg final
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 /* BABELTRACE_PLUGINS_CTF_COMMON_SRC_CLK_CLS_CFG_HPP */
This page took 0.027326 seconds and 5 git commands to generate.