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