| 1626 | } |
| 1627 | |
| 1628 | uint64_t XMLElement::Unsigned64Attribute(const char* name, uint64_t defaultValue) const |
| 1629 | { |
| 1630 | uint64_t i = defaultValue; |
| 1631 | QueryUnsigned64Attribute(name, &i); |
| 1632 | return i; |
| 1633 | } |
| 1634 | |
| 1635 | bool XMLElement::BoolAttribute(const char* name, bool defaultValue) const |
| 1636 | { |
nothing calls this directly
no test coverage detected