| 1665 | } |
| 1666 | |
| 1667 | bool XMLElement::BoolAttribute(const char* name, bool defaultValue) const |
| 1668 | { |
| 1669 | bool b = defaultValue; |
| 1670 | QueryBoolAttribute(name, &b); |
| 1671 | return b; |
| 1672 | } |
| 1673 | |
| 1674 | double XMLElement::DoubleAttribute(const char* name, double defaultValue) const |
| 1675 | { |
nothing calls this directly
no test coverage detected