| 1612 | } |
| 1613 | |
| 1614 | unsigned XMLElement::UnsignedAttribute(const char* name, unsigned defaultValue) const |
| 1615 | { |
| 1616 | unsigned i = defaultValue; |
| 1617 | QueryUnsignedAttribute(name, &i); |
| 1618 | return i; |
| 1619 | } |
| 1620 | |
| 1621 | int64_t XMLElement::Int64Attribute(const char* name, int64_t defaultValue) const |
| 1622 | { |
nothing calls this directly
no test coverage detected