Sets the named attribute to value.
| 1302 | |
| 1303 | /// Sets the named attribute to value. |
| 1304 | void SetAttribute( const char* name, const char* value ) { |
| 1305 | XMLAttribute* a = FindOrCreateAttribute( name ); |
| 1306 | a->SetAttribute( value ); |
| 1307 | } |
| 1308 | /// Sets the named attribute to value. |
| 1309 | void SetAttribute( const char* name, int value ) { |
| 1310 | XMLAttribute* a = FindOrCreateAttribute( name ); |
nothing calls this directly
no test coverage detected