| 1647 | } |
| 1648 | |
| 1649 | float XMLElement::FloatAttribute(const char* name, float defaultValue) const |
| 1650 | { |
| 1651 | float f = defaultValue; |
| 1652 | QueryFloatAttribute(name, &f); |
| 1653 | return f; |
| 1654 | } |
| 1655 | |
| 1656 | const char* XMLElement::GetText() const |
| 1657 | { |
nothing calls this directly
no test coverage detected