| 1651 | } |
| 1652 | |
| 1653 | int64_t XMLElement::Int64Attribute(const char* name, int64_t defaultValue) const |
| 1654 | { |
| 1655 | int64_t i = defaultValue; |
| 1656 | QueryInt64Attribute(name, &i); |
| 1657 | return i; |
| 1658 | } |
| 1659 | |
| 1660 | uint64_t XMLElement::Unsigned64Attribute(const char* name, uint64_t defaultValue) const |
| 1661 | { |
nothing calls this directly
no test coverage detected