| 2175 | |
| 2176 | |
| 2177 | void XMLPrinter::PushUnknown( const char* value ) |
| 2178 | { |
| 2179 | if ( _elementJustOpened ) { |
| 2180 | SealElement(); |
| 2181 | } |
| 2182 | if ( _textDepth < 0 && !_firstElement && !_compactMode) { |
| 2183 | Print( "\n" ); |
| 2184 | PrintSpace( _depth ); |
| 2185 | } |
| 2186 | _firstElement = false; |
| 2187 | Print( "<!%s>", value ); |
| 2188 | } |
| 2189 | |
| 2190 | |
| 2191 | bool XMLPrinter::VisitEnter( const XMLDocument& doc ) |
nothing calls this directly
no outgoing calls
no test coverage detected