| 2666 | |
| 2667 | |
| 2668 | void XMLPrinter::PushText( const char* text, bool cdata ) |
| 2669 | { |
| 2670 | _textDepth = _depth-1; |
| 2671 | |
| 2672 | SealElementIfJustOpened(); |
| 2673 | if ( cdata ) { |
| 2674 | Write( "<![CDATA[" ); |
| 2675 | Write( text ); |
| 2676 | Write( "]]>" ); |
| 2677 | } |
| 2678 | else { |
| 2679 | PrintString( text, true ); |
| 2680 | } |
| 2681 | } |
| 2682 | |
| 2683 | void XMLPrinter::PushText( int64_t value ) |
| 2684 | { |