| 1620 | } |
| 1621 | |
| 1622 | uint64_t XMLElement::Hex64Attribute(const char* name, uint64_t defaultValue) const |
| 1623 | { |
| 1624 | uint64_t i = defaultValue; |
| 1625 | QueryHex64Attribute(name, &i); |
| 1626 | return i; |
| 1627 | } |
| 1628 | |
| 1629 | |
| 1630 | bool XMLElement::BoolAttribute(const char* name, bool defaultValue) const |
no test coverage detected