| 1637 | } |
| 1638 | |
| 1639 | int XMLElement::IntAttribute(const char* name, int defaultValue) const |
| 1640 | { |
| 1641 | int i = defaultValue; |
| 1642 | QueryIntAttribute(name, &i); |
| 1643 | return i; |
| 1644 | } |
| 1645 | |
| 1646 | unsigned XMLElement::UnsignedAttribute(const char* name, unsigned defaultValue) const |
| 1647 | { |
no test coverage detected