Skip to content
Snippets Groups Projects
Attribute.h 478 B
Newer Older
 *
 *  Created on: Oct 5, 2016
 *      Author: wfg
 */

#ifndef ATTRIBUTE_H_
#define ATTRIBUTE_H_
/// \cond EXCLUDE_FROM_DOXYGEN
#include <string>
/// \endcond
 * Plain-old data struct that defines an attribute in an ADIOS group in Group.h
struct Attribute
    const char TypeID; ///< '0': string, '1': numeric
    const std::string Value; ///< information about the attribute
#endif /* ATTRIBUTE_H_ */