C bindings interface to templated C++ ioda classes and functions.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
IODA_DL bool ioda_dimensions_get_dim_cur(const struct ioda_dimensions *d, size_t n, ptrdiff_t *val)
Get the current size of the n-th dimension.
IODA_DL bool ioda_dimensions_get_dim_max(const struct ioda_dimensions *d, size_t n, ptrdiff_t *val)
Get the maximum size of the n-th dimension.
IODA_DL bool ioda_dimensions_set_dimensionality(struct ioda_dimensions *d, size_t N)
Set dimensionality of the dimensions container.
IODA_DL bool ioda_dimensions_set_dim_max(struct ioda_dimensions *d, size_t n, ptrdiff_t sz)
Set the maximum size of the n-th dimension.
IODA_DL bool ioda_dimensions_get_dimensionality(const struct ioda_dimensions *d, size_t *val)
Gets dimensionality (i.e. number of dimensions)
IODA_DL bool ioda_dimensions_set_dim_cur(struct ioda_dimensions *d, size_t n, ptrdiff_t sz)
Set the current size of the n-th dimension.
IODA_DL bool ioda_dimensions_get_num_elements(const struct ioda_dimensions *d, size_t *val)
Get the number of distinct elements in the dimensions object (the product of each dimension size).
IODA_DL void ioda_dimensions_destruct(struct ioda_dimensions *d)
Deallocates a dimensions container.
Class-like encapsulation of C dimension-manipulating functions.
bool(* setDimensionality)(struct ioda_dimensions *, size_t)
bool(* setDimMax)(struct ioda_dimensions *, size_t, ptrdiff_t)
bool(* getNumElements)(const struct ioda_dimensions *, size_t *)
bool(* getDimMax)(const struct ioda_dimensions *, size_t, ptrdiff_t *)
void(* destruct)(struct ioda_dimensions *)
bool(* getDimensionality)(const struct ioda_dimensions *, size_t *)
bool(* setDimCur)(struct ioda_dimensions *, size_t, ptrdiff_t)
bool(* getDimCur)(const struct ioda_dimensions *, size_t, ptrdiff_t *)