| 1626 | } |
| 1627 | |
| 1628 | double XMLElement::DoubleAttribute(const char* name, double defaultValue) const |
| 1629 | { |
| 1630 | double d = defaultValue; |
| 1631 | QueryDoubleAttribute(name, &d); |
| 1632 | return d; |
| 1633 | } |
| 1634 | |
| 1635 | float XMLElement::FloatAttribute(const char* name, float defaultValue) const |
| 1636 | { |
nothing calls this directly
no test coverage detected