Sets the named attribute to value.
| 1579 | |
| 1580 | /// Sets the named attribute to value. |
| 1581 | void SetAttribute(const char* name, const char* value) |
| 1582 | { |
| 1583 | XMLAttribute* a = FindOrCreateAttribute(name); |
| 1584 | a->SetAttribute(value); |
| 1585 | } |
| 1586 | /// Sets the named attribute to value. |
| 1587 | void SetAttribute(const char* name, int value) |
| 1588 | { |
nothing calls this directly
no test coverage detected