MCPcopy Create free account
hub / github.com/JayXon/Leanify / PushText

Method PushText

lib/tinyxml2/tinyxml2.cpp:2196–2209  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2194
2195
2196void XMLPrinter::PushText( const char* text, bool cdata )
2197{
2198 _textDepth = _depth-1;
2199
2200 SealElementIfJustOpened();
2201 if ( cdata ) {
2202 Print( "<![CDATA[" );
2203 Print( "%s", text );
2204 Print( "]]>" );
2205 }
2206 else {
2207 PrintString( text, true );
2208 }
2209}
2210
2211void XMLPrinter::PushText( int value )
2212{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected