| 2759 | |
| 2760 | |
| 2761 | void XMLPrinter::PushAttribute( const char* name, const char* value ) |
| 2762 | { |
| 2763 | TIXMLASSERT( _elementJustOpened ); |
| 2764 | Putc ( ' ' ); |
| 2765 | Write( name ); |
| 2766 | Write( "=\"" ); |
| 2767 | PrintString( value, false ); |
| 2768 | Putc ( '\"' ); |
| 2769 | } |
| 2770 | |
| 2771 | |
| 2772 | void XMLPrinter::PushAttribute( const char* name, int v ) |
no test coverage detected