| 1672 | } |
| 1673 | |
| 1674 | double XMLElement::DoubleAttribute(const char* name, double defaultValue) const |
| 1675 | { |
| 1676 | double d = defaultValue; |
| 1677 | QueryDoubleAttribute(name, &d); |
| 1678 | return d; |
| 1679 | } |
| 1680 | |
| 1681 | float XMLElement::FloatAttribute(const char* name, float defaultValue) const |
| 1682 | { |
nothing calls this directly
no test coverage detected