Sen API
Sen Libraries
Loading...
Searching...
No Matches
db/src/constants.h
Go to the documentation of this file.
1// === constants.h =====================================================================================================
2// Sen Infrastructure
3// Released under the Apache License v2.0 (SPDX-License-Identifier Apache-2.0).
4// See the LICENSE.txt file for more information.
5// © Airbus SAS, Airbus Helicopters, and Airbus Defence and Space SAU/GmbH/SAS.
6// =====================================================================================================================
7
8// std
9#include <cstdint>
10#include <string_view>
11
12namespace sen::db
13{
14
15constexpr uint32_t keyframeIndexId = 0U;
16constexpr uint32_t beginMagic = 0xcafebabeU;
17
18constexpr std::string_view runtimeFileName = "runtime";
19constexpr std::string_view typesFileName = "types";
20constexpr std::string_view indexesFileName = "indexes";
21constexpr std::string_view annotationsFileName = "annotations";
22constexpr std::string_view summaryFileName = "summary";
23
24} // namespace sen::db
Definition annotation.h:20
constexpr std::string_view summaryFileName
Definition db/src/constants.h:22
constexpr std::string_view indexesFileName
Definition db/src/constants.h:20
constexpr uint32_t keyframeIndexId
Definition db/src/constants.h:15
constexpr std::string_view typesFileName
Definition db/src/constants.h:19
constexpr std::string_view annotationsFileName
Definition db/src/constants.h:21
constexpr uint32_t beginMagic
Definition db/src/constants.h:16
constexpr std::string_view runtimeFileName
Definition db/src/constants.h:18