MCPcopy Create free account
hub / github.com/Overload-Technologies/Overload / PushText

Method PushText

Dependencies/tinyxml2/src/tinyxml2.cpp:2668–2681  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2666
2667
2668void XMLPrinter::PushText( const char* text, bool cdata )
2669{
2670 _textDepth = _depth-1;
2671
2672 SealElementIfJustOpened();
2673 if ( cdata ) {
2674 Write( "<![CDATA[" );
2675 Write( text );
2676 Write( "]]>" );
2677 }
2678 else {
2679 PrintString( text, true );
2680 }
2681}
2682
2683void XMLPrinter::PushText( int64_t value )
2684{

Callers

nothing calls this directly

Calls 1

WriteFunction · 0.85

Tested by

no test coverage detected