Coin Logo Coin3D is Free Software,
published under the BSD 3-clause license.
https://bitbucket.org/Coin3D/
http://www.kongsberg.com/kogt/
XML related functions and objects

Coin now has its own XML parser that also can be used from client code. More...

Typedefs

typedef struct cc_xml_doc cc_xml_doc
 opaque container object type for XML documents More...
 

Functions

cc_xml_doccc_xml_doc_new (void)
 
void cc_xml_doc_delete_x (cc_xml_doc *doc)
 
void cc_xml_doc_set_filter_cb_x (cc_xml_doc *doc, cc_xml_filter_cb *cb, void *userdata)
 
void cc_xml_doc_get_filter_cb (const cc_xml_doc *doc, cc_xml_filter_cb *&cb, void *&userdata)
 

Detailed Description

Coin now has its own XML parser that also can be used from client code.

Typedef Documentation

◆ cc_xml_doc

typedef struct cc_xml_doc cc_xml_doc

opaque container object type for XML documents

This type is an opaque container object type for an XML document structure, and also the interface for configuring the parsing and writing code.

Function Documentation

◆ cc_xml_doc_new()

cc_xml_doc * cc_xml_doc_new ( void  )
related

Creates a new cc_xml_doc object that is totally blank.

◆ cc_xml_doc_delete_x()

void cc_xml_doc_delete_x ( cc_xml_doc doc)
related

Frees up a cc_xml_doc object and all its resources.

◆ cc_xml_doc_set_filter_cb_x()

void cc_xml_doc_set_filter_cb_x ( cc_xml_doc doc,
cc_xml_filter_cb *  cb,
void *  userdata 
)
related

Sets the filter callback for document parsing. This makes it possible to use the parser as a streaming parser, by making the parser discard all elements it has read in.

Elements can only be discarded as they are popped - on push they will be kept regardless of what the filter callback returns.

◆ cc_xml_doc_get_filter_cb()

void cc_xml_doc_get_filter_cb ( const cc_xml_doc doc,
cc_xml_filter_cb *&  cb,
void *&  userdata 
)
related

Returns the set filter callback in the cb arg and userdata arg.