tinyxml2::XMLDocument::Print() const method
Print the Document. If the Printer is not provided, it will print to stdout. If you provide Printer, this can print to a file: @verbatim XMLPrinter printer( fp ); doc.Print( &printer ); @endverbatim Or you can use a printer to print to memory: @verbatim XMLPrinter printer; doc.Print( &printer ); // printer.CStr() has a const char* to the XML @endverbatim
![]()
data.Print(&printer);
tinyxml2::XMLDocument::Print() const is called by 1 function:
![]()
tinyxml2::XMLDocument::Print() const