FreeWRL/FreeX3D  3.0.0
cson_object Struct Reference

cson_object is an opaque handle to an Object value. More...

#include <cson_amalgamation_core.h>

Data Fields

cson_kvp_list kvp
 

Detailed Description

cson_object is an opaque handle to an Object value.

They are used like:

cson_object * obj = cson_value_get_object(myValue);
...

They can be created like:

cson_value * objV = cson_value_new_object();
cson_object * obj = cson_value_get_object(objV);
// obj is owned by objV and objV 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_object()
cson_value_get_object()
cson_value_free()

Definition at line 2124 of file cson_amalgamation_core.c.


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