| 1605 | } |
| 1606 | |
| 1607 | unsigned XMLElement::UnsignedAttribute(const char* name, unsigned defaultValue) const |
| 1608 | { |
| 1609 | unsigned i = defaultValue; |
| 1610 | QueryUnsignedAttribute(name, &i); |
| 1611 | return i; |
| 1612 | } |
| 1613 | |
| 1614 | xml_Int64a_t XMLElement::Int64Attribute(const char* name, xml_Int64a_t defaultValue) const |
| 1615 | { |
nothing calls this directly
no test coverage detected