| 2261 | |
| 2262 | |
| 2263 | void XMLPrinter::PushDeclaration( const char* value ) |
| 2264 | { |
| 2265 | SealElementIfJustOpened(); |
| 2266 | if ( _textDepth < 0 && !_firstElement && !_compactMode) { |
| 2267 | Print( "\n" ); |
| 2268 | PrintSpace( _depth ); |
| 2269 | } |
| 2270 | _firstElement = false; |
| 2271 | Print( "<?%s?>", value ); |
| 2272 | } |
| 2273 | |
| 2274 | |
| 2275 | void XMLPrinter::PushUnknown( const char* value ) |
nothing calls this directly
no outgoing calls
no test coverage detected