Lines Matching full:printer
576 TiXmlPrinter printer;
577 tinyxmlDoc.Accept( &printer );
578 const char* xmlcstr = printer.CStr();
1105 /** Print the Document. If the Printer is not provided, it will
1106 print to stdout. If you provide Printer, this can print to a file:
1108 XMLPrinter printer( fp );
1109 doc.Print( &printer );
1112 Or you can use a printer to print to memory:
1114 XMLPrinter printer;
1115 doc->Print( &printer );
1116 // printer.CStr() has a const char* to the XML
1349 XMLPrinter printer;
1350 doc->Print( &printer );
1351 SomeFunction( printer.CStr() );
1358 XMLPrinter printer( fp );
1359 doc.Print( &printer );
1368 The Printer supports the streaming case. The following code
1373 XMLPrinter printer( fp );
1374 printer.OpenElement( "foo" );
1375 printer.PushAttribute( "foo", "bar" );
1376 printer.CloseElement();
1382 /** Construct the printer. If the FILE* is specified,