| 2117 | |
| 2118 | |
| 2119 | void XMLPrinter::PushAttribute( const char* name, const char* value ) |
| 2120 | { |
| 2121 | TIXMLASSERT( _elementJustOpened ); |
| 2122 | Print( " %s=\"", name ); |
| 2123 | PrintString( value, false ); |
| 2124 | Print( "\"" ); |
| 2125 | } |
| 2126 | |
| 2127 | |
| 2128 | void XMLPrinter::PushAttribute( const char* name, int v ) |
nothing calls this directly
no outgoing calls
no test coverage detected