| 1606 | } |
| 1607 | |
| 1608 | int64_t XMLElement::Int64Attribute(const char* name, int64_t defaultValue) const |
| 1609 | { |
| 1610 | int64_t i = defaultValue; |
| 1611 | QueryInt64Attribute(name, &i); |
| 1612 | return i; |
| 1613 | } |
| 1614 | |
| 1615 | uint64_t XMLElement::Unsigned64Attribute(const char* name, uint64_t defaultValue) const |
| 1616 | { |
nothing calls this directly
no test coverage detected