| 2726 | |
| 2727 | |
| 2728 | void XMLPrinter::PushAttribute( const char* name, const char* value ) |
| 2729 | { |
| 2730 | TIXMLASSERT( _elementJustOpened ); |
| 2731 | Putc ( ' ' ); |
| 2732 | Write( name ); |
| 2733 | Write( "=\"" ); |
| 2734 | PrintString( value, false ); |
| 2735 | Putc ( '\"' ); |
| 2736 | } |
| 2737 | |
| 2738 | |
| 2739 | void XMLPrinter::PushAttribute( const char* name, int v ) |