MCPcopy Create free account
hub / github.com/MaxBelkov/visualsyslog / PushDeclaration

Method PushDeclaration

sourcecommon/tinyxml2.cpp:2163–2174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2161
2162
2163void XMLPrinter::PushDeclaration( const char* value )
2164{
2165 if ( _elementJustOpened ) {
2166 SealElement();
2167 }
2168 if ( _textDepth < 0 && !_firstElement && !_compactMode) {
2169 Print( "\n" );
2170 PrintSpace( _depth );
2171 }
2172 _firstElement = false;
2173 Print( "<?%s?>", value );
2174}
2175
2176
2177void XMLPrinter::PushUnknown( const char* value )

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected