| 1619 | } |
| 1620 | |
| 1621 | int64_t XMLElement::Int64Attribute(const char* name, int64_t defaultValue) const |
| 1622 | { |
| 1623 | int64_t i = defaultValue; |
| 1624 | QueryInt64Attribute(name, &i); |
| 1625 | return i; |
| 1626 | } |
| 1627 | |
| 1628 | uint64_t XMLElement::Unsigned64Attribute(const char* name, uint64_t defaultValue) const |
| 1629 | { |
nothing calls this directly
no test coverage detected