|
| | XMLPrinter (FILE *file=0, bool compact=false, int depth=0) |
| |
| void | PushHeader (bool writeBOM, bool writeDeclaration) |
| |
| void | OpenElement (const char *name, bool compactMode=false) |
| |
|
void | PushAttribute (const char *name, const char *value) |
| | If streaming, add an attribute to an open element.
|
| |
|
void | PushAttribute (const char *name, int value) |
| |
|
void | PushAttribute (const char *name, unsigned value) |
| |
|
void | PushAttribute (const char *name, int64_t value) |
| |
|
void | PushAttribute (const char *name, uint64_t value) |
| |
|
void | PushAttribute (const char *name, bool value) |
| |
|
void | PushAttribute (const char *name, double value) |
| |
|
virtual void | CloseElement (bool compactMode=false) |
| | If streaming, close the Element.
|
| |
|
void | PushText (const char *text, bool cdata=false) |
| | Add a text node.
|
| |
|
void | PushText (int value) |
| | Add a text node from an integer.
|
| |
|
void | PushText (unsigned value) |
| | Add a text node from an unsigned.
|
| |
|
void | PushText (int64_t value) |
| | Add a text node from a signed 64bit integer.
|
| |
|
void | PushText (uint64_t value) |
| | Add a text node from an unsigned 64bit integer.
|
| |
|
void | PushText (bool value) |
| | Add a text node from a bool.
|
| |
|
void | PushText (float value) |
| | Add a text node from a float.
|
| |
|
void | PushText (double value) |
| | Add a text node from a double.
|
| |
|
void | PushComment (const char *comment) |
| | Add a comment.
|
| |
|
void | PushDeclaration (const char *value) |
| |
|
void | PushUnknown (const char *value) |
| |
| virtual bool | VisitEnter (const XMLDocument &) override |
| | Visit a document.
|
| |
| virtual bool | VisitExit (const XMLDocument &) override |
| | Visit a document.
|
| |
| virtual bool | VisitEnter (const XMLElement &element, const XMLAttribute *attribute) override |
| | Visit an element.
|
| |
| virtual bool | VisitExit (const XMLElement &element) override |
| | Visit an element.
|
| |
| virtual bool | Visit (const XMLText &text) override |
| | Visit a text node.
|
| |
| virtual bool | Visit (const XMLComment &comment) override |
| | Visit a comment node.
|
| |
| virtual bool | Visit (const XMLDeclaration &declaration) override |
| | Visit a declaration.
|
| |
| virtual bool | Visit (const XMLUnknown &unknown) override |
| | Visit an unknown node.
|
| |
| const char * | CStr () const |
| |
| int | CStrSize () const |
| |
| void | ClearBuffer (bool resetToFirstElement=true) |
| |
Printing functionality. The XMLPrinter gives you more options than the XMLDocument::Print() method.
It can:
- Print to memory.
- Print to a file you provide.
- Print XML without a XMLDocument.
Print to Memory
XMLPrinter printer;
doc.Print( &printer );
SomeFunction( printer.CStr() );
Print to a File
You provide the file pointer.
XMLPrinter printer( fp );
doc.Print( &printer );
Print without a XMLDocument
When loading, an XML parser is very useful. However, sometimes when saving, it just gets in the way. The code is often set up for streaming, and constructing the DOM is just overhead.
The Printer supports the streaming case. The following code prints out a trivially simple XML file without ever creating an XML document.
XMLPrinter printer( fp );
printer.OpenElement( "foo" );
printer.PushAttribute( "foo", "bar" );
printer.CloseElement();