| 1957 | |
| 1958 | |
| 1959 | void XMLPrinter::PushAttribute( const char* name, const char* value ) { |
| 1960 | TIXMLASSERT( _elementJustOpened ); |
| 1961 | Print( " %s=\"", name ); |
| 1962 | PrintString( value, false ); |
| 1963 | Print( "\"" ); |
| 1964 | } |
| 1965 | |
| 1966 | |
| 1967 | void XMLPrinter::PushAttribute( const char* name, int v ) { |
nothing calls this directly
no outgoing calls
no test coverage detected