| 2016 | |
| 2017 | |
| 2018 | void XMLPrinter::PushAttribute( const char* name, const char* value ) |
| 2019 | { |
| 2020 | TIXMLASSERT( _elementJustOpened ); |
| 2021 | Print( " %s=\"", name ); |
| 2022 | PrintString( value, false ); |
| 2023 | Print( "\"" ); |
| 2024 | } |
| 2025 | |
| 2026 | |
| 2027 | void XMLPrinter::PushAttribute( const char* name, int v ) |
nothing calls this directly
no outgoing calls
no test coverage detected