| 2096 | |
| 2097 | |
| 2098 | void XMLPrinter::PushUnknown( const char* value ) { |
| 2099 | SealElementIfJustOpened(); |
| 2100 | if ( _textDepth < 0 && !_firstElement && !_compactMode) { |
| 2101 | Print( "\n" ); |
| 2102 | PrintSpace( _depth ); |
| 2103 | } |
| 2104 | _firstElement = false; |
| 2105 | Print( "<!%s>", value ); |
| 2106 | } |
| 2107 | |
| 2108 | |
| 2109 | bool XMLPrinter::VisitEnter( const XMLDocument& doc ) { |
nothing calls this directly
no outgoing calls
no test coverage detected