Sets the named attribute to value.
| 1428 | |
| 1429 | /// Sets the named attribute to value. |
| 1430 | void SetAttribute( const char* name, const char* value ) { |
| 1431 | XMLAttribute* a = FindOrCreateAttribute( name ); |
| 1432 | a->SetAttribute( value ); |
| 1433 | } |
| 1434 | /// Sets the named attribute to value. |
| 1435 | void SetAttribute( const char* name, int value ) { |
| 1436 | XMLAttribute* a = FindOrCreateAttribute( name ); |
nothing calls this directly
no test coverage detected