Sets the named attribute to value.
| 1332 | |
| 1333 | /// Sets the named attribute to value. |
| 1334 | void SetAttribute( const char* name, const char* value ) { |
| 1335 | XMLAttribute* a = FindOrCreateAttribute( name ); |
| 1336 | a->SetAttribute( value ); |
| 1337 | } |
| 1338 | /// Sets the named attribute to value. |
| 1339 | void SetAttribute( const char* name, int value ) { |
| 1340 | XMLAttribute* a = FindOrCreateAttribute( name ); |
nothing calls this directly
no test coverage detected