Provides the C-style interface for ioda::Attribute objects.
More...
Provides the C-style interface for ioda::Attribute objects.
◆ IODA_ATTRIBUTE_ISA_IMPL
#define IODA_ATTRIBUTE_ISA_IMPL |
( |
|
funcnamestr, |
|
|
|
Type |
|
) |
| |
Value:
C_TRY; \
Expects(att != nullptr); \
bool res = att->
att.
isA<Type>(); \
C_CATCH_AND_RETURN((res) ? 1 : 0, -1); \
}
bool isA() const
Convenience function to check an Attribute's storage type.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition at line 39 of file Attribute_c.cpp.
◆ IODA_ATTRIBUTE_READ
#define IODA_ATTRIBUTE_READ |
( |
|
funcnamestr, |
|
|
|
Type |
|
) |
| |
Value:
C_TRY; \
Expects(att != nullptr); \
Expects(vals != nullptr); \
att->att.read<Type>(gsl::span<Type>(vals, sz)); \
C_CATCH_AND_RETURN(true, false); \
}
Definition at line 74 of file Attribute_c.cpp.
◆ IODA_ATTRIBUTE_WRITE
#define IODA_ATTRIBUTE_WRITE |
( |
|
funcnamestr, |
|
|
|
Type |
|
) |
| |
Value:
C_TRY; \
Expects(att != nullptr); \
Expects(vals != nullptr); \
att->att.write<Type>(gsl::span<const Type>(vals, sz)); \
C_CATCH_AND_RETURN(true, false); \
}
Definition at line 51 of file Attribute_c.cpp.
◆ C_TEMPLATE_FUNCTION_DEFINITION()
◆ C_TEMPLATE_FUNCTION_DEFINITION_NOSTR() [1/2]
◆ C_TEMPLATE_FUNCTION_DEFINITION_NOSTR() [2/2]
◆ ioda_attribute_destruct()
Deallocates an attribute.
- Parameters
-
att | is the attribute to be destructed. |
Definition at line 21 of file Attribute_c.cpp.
◆ ioda_attribute_get_dimensions() [1/2]
◆ ioda_attribute_get_dimensions() [2/2]
Gets an attribute's dimensions.
- Parameters
-
- Returns
- A dimension object that contains the attribute's dimensions. Must be freed when no longer used.
◆ ioda_attribute_read_str()
◆ ioda_attribute_write_str()