| 1679 | } |
| 1680 | |
| 1681 | float XMLElement::FloatAttribute(const char* name, float defaultValue) const |
| 1682 | { |
| 1683 | float f = defaultValue; |
| 1684 | QueryFloatAttribute(name, &f); |
| 1685 | return f; |
| 1686 | } |
| 1687 | |
| 1688 | const char* XMLElement::GetText() const |
| 1689 | { |
nothing calls this directly
no test coverage detected