| 1633 | } |
| 1634 | |
| 1635 | bool XMLElement::BoolAttribute(const char* name, bool defaultValue) const |
| 1636 | { |
| 1637 | bool b = defaultValue; |
| 1638 | QueryBoolAttribute(name, &b); |
| 1639 | return b; |
| 1640 | } |
| 1641 | |
| 1642 | double XMLElement::DoubleAttribute(const char* name, double defaultValue) const |
| 1643 | { |
nothing calls this directly
no test coverage detected