| 1599 | } |
| 1600 | |
| 1601 | unsigned XMLElement::UnsignedAttribute(const char* name, unsigned defaultValue) const |
| 1602 | { |
| 1603 | unsigned i = defaultValue; |
| 1604 | QueryUnsignedAttribute(name, &i); |
| 1605 | return i; |
| 1606 | } |
| 1607 | |
| 1608 | int64_t XMLElement::Int64Attribute(const char* name, int64_t defaultValue) const |
| 1609 | { |
no test coverage detected