| 1658 | } |
| 1659 | |
| 1660 | uint64_t XMLElement::Unsigned64Attribute(const char* name, uint64_t defaultValue) const |
| 1661 | { |
| 1662 | uint64_t i = defaultValue; |
| 1663 | QueryUnsigned64Attribute(name, &i); |
| 1664 | return i; |
| 1665 | } |
| 1666 | |
| 1667 | bool XMLElement::BoolAttribute(const char* name, bool defaultValue) const |
| 1668 | { |
nothing calls this directly
no test coverage detected