| 2743 | |
| 2744 | |
| 2745 | void XMLPrinter::PushDeclaration( const char* value ) |
| 2746 | { |
| 2747 | SealElementIfJustOpened(); |
| 2748 | if ( _textDepth < 0 && !_firstElement && !_compactMode) { |
| 2749 | Putc( '\n' ); |
| 2750 | PrintSpace( _depth ); |
| 2751 | } |
| 2752 | _firstElement = false; |
| 2753 | |
| 2754 | Write( "<?" ); |
| 2755 | Write( value ); |
| 2756 | Write( "?>" ); |
| 2757 | } |
| 2758 | |
| 2759 | |
| 2760 | void XMLPrinter::PushUnknown( const char* value ) |