| 1556 | } |
| 1557 | |
| 1558 | double XMLElement::DoubleAttribute(const char* name, double defaultValue) const |
| 1559 | { |
| 1560 | double d = defaultValue; |
| 1561 | QueryDoubleAttribute(name, &d); |
| 1562 | return d; |
| 1563 | } |
| 1564 | |
| 1565 | float XMLElement::FloatAttribute(const char* name, float defaultValue) const |
| 1566 | { |
nothing calls this directly
no test coverage detected