| 2856 | |
| 2857 | |
| 2858 | void XMLPrinter::PushText( const char* text, bool cdata ) |
| 2859 | { |
| 2860 | _textDepth = _depth-1; |
| 2861 | |
| 2862 | SealElementIfJustOpened(); |
| 2863 | if ( cdata ) { |
| 2864 | Write( "<![CDATA[" ); |
| 2865 | Write( text ); |
| 2866 | Write( "]]>" ); |
| 2867 | } |
| 2868 | else { |
| 2869 | PrintString( text, true ); |
| 2870 | } |
| 2871 | } |
| 2872 | |
| 2873 | |
| 2874 | void XMLPrinter::PushText( int64_t value ) |