|
||||||||||||||||||||||||||
xml_writer.c++ File ReferenceImplementation of the XML Writer. More...
Detailed DescriptionImplementation of the XML Writer.This file includes a class used to write an X3D node tree to an XML file using the UTF-8 encoding. To use the writer, instanciate an object on your stack or otherwise with the new operator and call the Save() function with the proper parameters:
... // create the x3d_tree x3dio::FileStream stream; stream.Create("my_shape.x3d"); x3dxml::XMLWriter xml_out; // note: ignore errors xml_out.Save(stream, x3d_tree); exit(0); The file includes an internal class which is not documented. It is static to this file. Define Documentation
|
||||||||||||||||||||||||||
|