| 1628 | |
| 1629 | |
| 1630 | bool XMLElement::BoolAttribute(const char* name, bool defaultValue) const |
| 1631 | { |
| 1632 | bool b = defaultValue; |
| 1633 | QueryBoolAttribute(name, &b); |
| 1634 | return b; |
| 1635 | } |
| 1636 | |
| 1637 | double XMLElement::DoubleAttribute(const char* name, double defaultValue) const |
| 1638 | { |
no test coverage detected