| 1642 | } |
| 1643 | |
| 1644 | float XMLElement::FloatAttribute(const char* name, float defaultValue) const |
| 1645 | { |
| 1646 | float f = defaultValue; |
| 1647 | QueryFloatAttribute(name, &f); |
| 1648 | return f; |
| 1649 | } |
| 1650 | |
| 1651 | const char* XMLElement::GetText() const |
| 1652 | { |
nothing calls this directly
no test coverage detected