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