FreeWRL/FreeX3D  3.0.0
cson_array Struct Reference

cson_array is an opaque handle to an Array value. More...

#include <cson_amalgamation_core.h>

Data Fields

cson_value_list list
 

Detailed Description

cson_array is an opaque handle to an Array value.

They are used like:

cson_array * obj = cson_value_get_array(myValue);
...

They can be created like:

cson_value * arV = cson_value_new_array();
cson_array * ar = cson_value_get_array(arV);
// ar is owned by arV and arV must eventually be freed
// using cson_value_free() or added to a container
// object/array (which transfers ownership to that container).
See Also
cson_value_new_array()
cson_value_get_array()
cson_value_free()

Definition at line 2142 of file cson_amalgamation_core.c.


The documentation for this struct was generated from the following file: