Sets the named attribute to value.
| 1463 | |
| 1464 | /// Sets the named attribute to value. |
| 1465 | void SetAttribute( const char* name, const char* value ) { |
| 1466 | XMLAttribute* a = FindOrCreateAttribute( name ); |
| 1467 | a->SetAttribute( value ); |
| 1468 | } |
| 1469 | /// Sets the named attribute to value. |
| 1470 | void SetAttribute( const char* name, int value ) { |
| 1471 | XMLAttribute* a = FindOrCreateAttribute( name ); |
nothing calls this directly
no test coverage detected