lsl_xml_ptr typedef

lsl_xml_ptr = Pointer<lsl_xml_ptr_struct_>

@class lsl_xml_ptr A lightweight XML element tree handle; models the description of a streaminfo object. XML elements behave like advanced pointers into memory that is owned by some respective streaminfo. Has a name and can have multiple named children or have text content as value; attributes are omitted. @note The interface is modeled after a subset of pugixml's node type and is compatible with it. Type-casts between pugi::xml_node_struct* and #lsl_xml_ptr are permitted (in both directions) since the types are binary compatible. @sa pugixml documentation.

Implementation

typedef lsl_xml_ptr = ffi.Pointer<lsl_xml_ptr_struct_>;