| 2161 | |
| 2162 | |
| 2163 | void XMLPrinter::PushDeclaration( const char* value ) |
| 2164 | { |
| 2165 | if ( _elementJustOpened ) { |
| 2166 | SealElement(); |
| 2167 | } |
| 2168 | if ( _textDepth < 0 && !_firstElement && !_compactMode) { |
| 2169 | Print( "\n" ); |
| 2170 | PrintSpace( _depth ); |
| 2171 | } |
| 2172 | _firstElement = false; |
| 2173 | Print( "<?%s?>", value ); |
| 2174 | } |
| 2175 | |
| 2176 | |
| 2177 | void XMLPrinter::PushUnknown( const char* value ) |
nothing calls this directly
no outgoing calls
no test coverage detected