IODA
Layout_ObsGroup.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2020-2021 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 /*! \defgroup ioda_cxx_layout_internal Internal Groups and Data Layout
9  * \brief Private API
10  * \ingroup ioda_internals
11  *
12  * @{
13  * \file Layout_ObsGroup.h
14  * \brief Contains definitions for how data are arranged in ioda internally.
15  */
16 
17 #include <memory>
18 #include <string>
19 
20 #include "ioda/Layout.h"
21 #include "ioda/defs.h"
22 
23 namespace ioda {
24 namespace detail {
25 /// Layout for ObsGroup-like data.
27  /// \brief Record versioning information for this layout in the ioda object. Provides forward
28  /// compatability.
29  static const int32_t ObsGroup_Layout_Version;
30 
31 public:
33  void initializeStructure(Group_Base &) const override;
34  std::string doMap(const std::string &) const override;
36  // doMap is not present, as the default policy works just fine.
37  /// A descriptive name for the policy.
38  std::string name() const override;
39 };
40 
41 } // namespace detail
42 } // namespace ioda
43 
44 /// @}
Contains definitions for how data are arranged in ioda internally.
Layout for ObsGroup-like data.
static const int32_t ObsGroup_Layout_Version
Record versioning information for this layout in the ioda object. Provides forward compatability.
Policy used for setting locations for Variable access.
Definition: Layout.h:36
Hidden base class to prevent constructor confusion.
Definition: Group.h:42
Common preprocessor definitions used throughout IODA.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110