| 1644 | } |
| 1645 | |
| 1646 | unsigned XMLElement::UnsignedAttribute(const char* name, unsigned defaultValue) const |
| 1647 | { |
| 1648 | unsigned i = defaultValue; |
| 1649 | QueryUnsignedAttribute(name, &i); |
| 1650 | return i; |
| 1651 | } |
| 1652 | |
| 1653 | int64_t XMLElement::Int64Attribute(const char* name, int64_t defaultValue) const |
| 1654 | { |
nothing calls this directly
no test coverage detected