| 1541 | } |
| 1542 | |
| 1543 | int64_t XMLElement::Int64Attribute(const char* name, int64_t defaultValue) const |
| 1544 | { |
| 1545 | int64_t i = defaultValue; |
| 1546 | QueryInt64Attribute(name, &i); |
| 1547 | return i; |
| 1548 | } |
| 1549 | |
| 1550 | bool XMLElement::BoolAttribute(const char* name, bool defaultValue) const |
| 1551 | { |
no test coverage detected