IODA
ioda_has_attributes_create

Create a new attribute. More...

Collaboration diagram for ioda_has_attributes_create:

Macros

#define IODA_HAS_ATTRIBUTES_CREATE_TEMPLATE(funcnamestr, junk)
 See ioda_has_attributes_create . More...
 

Functions

 C_TEMPLATE_FUNCTION_DECLARATION (ioda_has_attributes_create, IODA_HAS_ATTRIBUTES_CREATE_TEMPLATE)
 

Detailed Description

Create a new attribute.

This is documentation for a series of functions in C that attempt to emulate C++ templates using macro magic. The template parameter SUFFIX is written into the function name. Ex:, to create an integer attribute, call ioda_has_attributes_create_int.

Template Parameters
SUFFIXis the type (int, long, int64_t) that is appended to this function name in the C interface.
Parameters
has_atts[in]is the container of the attribute. Attributes can be attached to Groups or Variables.
name[in]is the name of the new attribute. This name must not already exist.
sz_nameis strlen(name). Fortran compatability.
n_dimsis the dimensionality of the new attribute.
dimsis an array of dimension lengths of the new attribute. The array must be of rank n_dims.
See also
ioda_group_atts for a method to get a group's associated has_attributes object.
ioda_variable_atts for a method to get a variable's associated has_attributes object.
Returns
the new attribute on success.
NULL on failure.
Precondition
has_atts must be valid. The variable or group associated with has_atts must still exist.
name must be a valid name. No attribute with this name should exist in has_atts.
dims must be valid and have the rank of n_dims.
Postcondition
An attribute of the specified name, type, and dimensions now exists.

Macro Definition Documentation

◆ IODA_HAS_ATTRIBUTES_CREATE_TEMPLATE

#define IODA_HAS_ATTRIBUTES_CREATE_TEMPLATE (   funcnamestr,
  junk 
)
Value:
IODA_DL struct ioda_attribute* funcnamestr(struct ioda_has_attributes* has_atts, size_t sz_name, \
const char* name, size_t n_dims, const long* dims);
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110

See ioda_has_attributes_create .

See also
ioda_has_attributes_create

Definition at line 121 of file Has_Attributes_c.h.

Function Documentation

◆ C_TEMPLATE_FUNCTION_DECLARATION()

C_TEMPLATE_FUNCTION_DECLARATION ( ioda_has_attributes_create  ,
IODA_HAS_ATTRIBUTES_CREATE_TEMPLATE   
)