| 1605 | } |
| 1606 | |
| 1607 | int XMLElement::IntAttribute(const char* name, int defaultValue) const |
| 1608 | { |
| 1609 | int i = defaultValue; |
| 1610 | QueryIntAttribute(name, &i); |
| 1611 | return i; |
| 1612 | } |
| 1613 | |
| 1614 | unsigned XMLElement::UnsignedAttribute(const char* name, unsigned defaultValue) const |
| 1615 | { |
nothing calls this directly
no test coverage detected