IODA
Types.hpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020-2021 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 /*! \addtogroup ioda_internals_engines_obsstore
8  *
9  * @{
10  * \file Types.hpp
11  * \brief Functions for ObsStore type markers
12  */
13 #pragma once
14 #include <cstring>
15 #include <gsl/gsl-lite.hpp>
16 #include <memory>
17 #include <string>
18 #include <typeindex>
19 #include <typeinfo>
20 #include <vector>
21 
22 namespace ioda {
23 namespace ObsStore {
24 /// \brief ObsStore data type markers
25 /// \ingroup ioda_internals_engines_obsstore
26 /// \details ObsStore data type markers are one-for-one with C++ POD types.
27 /// These are needed for translating the frontend structure that holds
28 /// POD types to an equivalent in ObsStore. These are primarily used
29 /// for constructing templated objects that hold data values.
30 enum class ObsTypes {
31  NOTYPE,
32 
33  BOOL,
34 
35  FLOAT,
36  DOUBLE,
37  LDOUBLE,
38 
39  SCHAR,
40  SHORT,
41  INT,
42  LONG,
43  LLONG,
44 
45  UCHAR,
46  UINT,
47  USHORT,
48  ULONG,
49  ULLONG,
50 
51  CHAR,
52  WCHAR,
53  CHAR16,
54  CHAR32,
55 
56  STRING
57 };
58 } // namespace ObsStore
59 } // namespace ioda
60 
61 /// @}
@ ObsStore
ObsStore in-memory.
ObsTypes
ObsStore data type markers.
Definition: Types.hpp:30