IODA
ObsStore.h
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 /*! \defgroup ioda_cxx_engines_pub_ObsStore ObsStore Engine
8  * \brief ObsStore Engine
9  * \ingroup ioda_cxx_engines_pub
10  *
11  * @{
12  * \file ObsStore.h
13  * \brief ObsStore engine
14  */
15 #pragma once
16 #include <string>
17 
18 #include "../defs.h"
19 #include "Capabilities.h"
20 
21 namespace ioda {
22 class Group;
23 
24 namespace Engines {
25 namespace ObsStore {
26 /// \brief Create a ioda::Group backed by an OsbStore Group object.
27 /// \ingroup ioda_cxx_engines_pub_ObsStore
29 
30 /// \brief Get capabilities of the ObsStore engine
31 /// \ingroup ioda_cxx_engines_pub_ObsStore
33 } // namespace ObsStore
34 } // namespace Engines
35 } // namespace ioda
36 
37 /// @}
38 
39 /*! \defgroup ioda_cxx_engines_pub_ObsStore ObsStore Engine
40  * \brief ObsStore Engine
41  * \ingroup ioda_cxx_engines_pub
42  */
Structs that describe backend capabilities.
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
IODA_DL Group createRootGroup()
Create a ioda::Group backed by an OsbStore Group object.
Definition: ObsStore.cpp:24
IODA_DL Capabilities getCapabilities()
Get capabilities of the ObsStore engine.
Definition: ObsStore.cpp:29
@ ObsStore
ObsStore in-memory.
Struct defining what an engine can/cannot do.
Definition: Capabilities.h:47