| 2273 | |
| 2274 | |
| 2275 | void XMLPrinter::PushUnknown( const char* value ) |
| 2276 | { |
| 2277 | SealElementIfJustOpened(); |
| 2278 | if ( _textDepth < 0 && !_firstElement && !_compactMode) { |
| 2279 | Print( "\n" ); |
| 2280 | PrintSpace( _depth ); |
| 2281 | } |
| 2282 | _firstElement = false; |
| 2283 | Print( "<!%s>", value ); |
| 2284 | } |
| 2285 | |
| 2286 | |
| 2287 | bool XMLPrinter::VisitEnter( const XMLDocument& doc ) |
nothing calls this directly
no outgoing calls
no test coverage detected