| 2577 | |
| 2578 | |
| 2579 | void XMLPrinter::PushAttribute( const char* name, const char* value ) |
| 2580 | { |
| 2581 | TIXMLASSERT( _elementJustOpened ); |
| 2582 | Putc ( ' ' ); |
| 2583 | Write( name ); |
| 2584 | Write( "=\"" ); |
| 2585 | PrintString( value, false ); |
| 2586 | Putc ( '\"' ); |
| 2587 | } |
| 2588 | |
| 2589 | |
| 2590 | void XMLPrinter::PushAttribute( const char* name, int v ) |