| 2249 | |
| 2250 | |
| 2251 | void XMLPrinter::PushComment( const char* comment ) |
| 2252 | { |
| 2253 | SealElementIfJustOpened(); |
| 2254 | if ( _textDepth < 0 && !_firstElement && !_compactMode) { |
| 2255 | Print( "\n" ); |
| 2256 | PrintSpace( _depth ); |
| 2257 | } |
| 2258 | _firstElement = false; |
| 2259 | // Print( "<!--%s-->", comment ); |
| 2260 | } |
| 2261 | |
| 2262 | |
| 2263 | void XMLPrinter::PushDeclaration( const char* value ) |
nothing calls this directly
no outgoing calls
no test coverage detected