| 2823 | |
| 2824 | |
| 2825 | void XMLPrinter::PushText( const char* text, bool cdata ) |
| 2826 | { |
| 2827 | _textDepth = _depth-1; |
| 2828 | |
| 2829 | SealElementIfJustOpened(); |
| 2830 | if ( cdata ) { |
| 2831 | Write( "<![CDATA[" ); |
| 2832 | Write( text ); |
| 2833 | Write( "]]>" ); |
| 2834 | } |
| 2835 | else { |
| 2836 | PrintString( text, true ); |
| 2837 | } |
| 2838 | } |
| 2839 | |
| 2840 | |
| 2841 | void XMLPrinter::PushText( int64_t value ) |