| 1592 | } |
| 1593 | |
| 1594 | int XMLElement::IntAttribute(const char* name, int defaultValue) const |
| 1595 | { |
| 1596 | int i = defaultValue; |
| 1597 | QueryIntAttribute(name, &i); |
| 1598 | return i; |
| 1599 | } |
| 1600 | |
| 1601 | unsigned XMLElement::UnsignedAttribute(const char* name, unsigned defaultValue) const |
| 1602 | { |
nothing calls this directly
no test coverage detected