| 1598 | } |
| 1599 | |
| 1600 | int XMLElement::IntAttribute(const char* name, int defaultValue) const |
| 1601 | { |
| 1602 | int i = defaultValue; |
| 1603 | QueryIntAttribute(name, &i); |
| 1604 | return i; |
| 1605 | } |
| 1606 | |
| 1607 | unsigned XMLElement::UnsignedAttribute(const char* name, unsigned defaultValue) const |
| 1608 | { |
nothing calls this directly
no test coverage detected