| 1547 | } |
| 1548 | |
| 1549 | bool XMLElement::BoolAttribute(const char* name, bool defaultValue) const |
| 1550 | { |
| 1551 | bool b = defaultValue; |
| 1552 | QueryBoolAttribute(name, &b); |
| 1553 | return b; |
| 1554 | } |
| 1555 | |
| 1556 | double XMLElement::DoubleAttribute(const char* name, double defaultValue) const |
| 1557 | { |
nothing calls this directly
no test coverage detected