FreeWRL / FreeX3D 4.3.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);
...
cson_object is an opaque handle to an Object value.

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).
The core value type of this API.
See also
cson_value_new_object()
cson_value_get_object()
cson_value_free()

Definition at line 2124 of file cson_amalgamation_core.c.

Field Documentation

◆ kvp

cson_kvp_list cson_object::kvp

Definition at line 2126 of file cson_amalgamation_core.c.


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