| 2194 | |
| 2195 | |
| 2196 | void XMLPrinter::PushText( const char* text, bool cdata ) |
| 2197 | { |
| 2198 | _textDepth = _depth-1; |
| 2199 | |
| 2200 | SealElementIfJustOpened(); |
| 2201 | if ( cdata ) { |
| 2202 | Print( "<![CDATA[" ); |
| 2203 | Print( "%s", text ); |
| 2204 | Print( "]]>" ); |
| 2205 | } |
| 2206 | else { |
| 2207 | PrintString( text, true ); |
| 2208 | } |
| 2209 | } |
| 2210 | |
| 2211 | void XMLPrinter::PushText( int value ) |
| 2212 | { |
nothing calls this directly
no outgoing calls
no test coverage detected