IODA
Attribute_Creator.cpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 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  */
8 #include "ioda/Exception.h"
9 
10 namespace ioda {
11 namespace detail {
13 
15 
16 } // namespace detail
17 
20 
22  try {
23  for (const auto& a : atts_) a->apply(obj);
24  } catch (...) {
25  std::throw_with_nested(Exception(ioda_Here()));
26  }
27 }
28 
29 } // namespace ioda
Flywheel creation of ioda::Attribute.
IODA's error system.
void apply(Has_Attributes &obj) const
std::vector< std::shared_ptr< detail::Attribute_Creator_Base > > atts_
The ioda exception class.
Definition: Exception.h:54
This class exists inside of ioda::Group or ioda::Variable and provides the interface to manipulating ...
Attribute_Creator_Base(const std::string &name)
#define ioda_Here()