| 1561 | } |
| 1562 | |
| 1563 | float XMLElement::FloatAttribute(const char* name, float defaultValue) const |
| 1564 | { |
| 1565 | float f = defaultValue; |
| 1566 | QueryFloatAttribute(name, &f); |
| 1567 | return f; |
| 1568 | } |
| 1569 | |
| 1570 | const char* XMLElement::GetText() const |
| 1571 | { |
nothing calls this directly
no test coverage detected