| 1633 | } |
| 1634 | |
| 1635 | float XMLElement::FloatAttribute(const char* name, float defaultValue) const |
| 1636 | { |
| 1637 | float f = defaultValue; |
| 1638 | QueryFloatAttribute(name, &f); |
| 1639 | return f; |
| 1640 | } |
| 1641 | |
| 1642 | const char* XMLElement::GetText() const |
| 1643 | { |
nothing calls this directly
no test coverage detected