| 1640 | } |
| 1641 | |
| 1642 | double XMLElement::DoubleAttribute(const char* name, double defaultValue) const |
| 1643 | { |
| 1644 | double d = defaultValue; |
| 1645 | QueryDoubleAttribute(name, &d); |
| 1646 | return d; |
| 1647 | } |
| 1648 | |
| 1649 | float XMLElement::FloatAttribute(const char* name, float defaultValue) const |
| 1650 | { |
nothing calls this directly
no test coverage detected