| 1613 | } |
| 1614 | |
| 1615 | uint64_t XMLElement::Unsigned64Attribute(const char* name, uint64_t defaultValue) const |
| 1616 | { |
| 1617 | uint64_t i = defaultValue; |
| 1618 | QueryUnsigned64Attribute(name, &i); |
| 1619 | return i; |
| 1620 | } |
| 1621 | |
| 1622 | uint64_t XMLElement::Hex64Attribute(const char* name, uint64_t defaultValue) const |
| 1623 | { |
no test coverage detected