| 2184 | |
| 2185 | |
| 2186 | void XMLPrinter::SealElementIfJustOpened() |
| 2187 | { |
| 2188 | if ( !_elementJustOpened ) { |
| 2189 | return; |
| 2190 | } |
| 2191 | _elementJustOpened = false; |
| 2192 | Print( ">" ); |
| 2193 | } |
| 2194 | |
| 2195 | |
| 2196 | void XMLPrinter::PushText( const char* text, bool cdata ) |
nothing calls this directly
no outgoing calls
no test coverage detected