| 1612 | } |
| 1613 | |
| 1614 | xml_Int64a_t XMLElement::Int64Attribute(const char* name, xml_Int64a_t defaultValue) const |
| 1615 | { |
| 1616 | xml_Int64a_t i = defaultValue; |
| 1617 | QueryInt64Attribute(name, &i); |
| 1618 | return i; |
| 1619 | } |
| 1620 | |
| 1621 | bool XMLElement::BoolAttribute(const char* name, bool defaultValue) const |
| 1622 | { |
nothing calls this directly
no test coverage detected