| 2090 | |
| 2091 | |
| 2092 | void XMLPrinter::PushText( const char* text, bool cdata ) |
| 2093 | { |
| 2094 | _textDepth = _depth-1; |
| 2095 | |
| 2096 | if ( _elementJustOpened ) { |
| 2097 | SealElement(); |
| 2098 | } |
| 2099 | if ( cdata ) { |
| 2100 | Print( "<![CDATA[" ); |
| 2101 | Print( "%s", text ); |
| 2102 | Print( "]]>" ); |
| 2103 | } |
| 2104 | else { |
| 2105 | PrintString( text, true ); |
| 2106 | } |
| 2107 | } |
| 2108 | |
| 2109 | void XMLPrinter::PushText( int value ) |
| 2110 | { |
nothing calls this directly
no outgoing calls
no test coverage detected