| 1703 | |
| 1704 | |
| 1705 | XMLError XMLElement::QueryFloatText( float* fval ) const |
| 1706 | { |
| 1707 | if ( FirstChild() && FirstChild()->ToText() ) { |
| 1708 | const char* t = FirstChild()->Value(); |
| 1709 | if ( XMLUtil::ToFloat( t, fval ) ) { |
| 1710 | return XML_SUCCESS; |
| 1711 | } |
| 1712 | return XML_CAN_NOT_CONVERT_TEXT; |
| 1713 | } |
| 1714 | return XML_NO_TEXT_NODE; |
| 1715 | } |
| 1716 | |
| 1717 | int XMLElement::IntText(int defaultValue) const |
| 1718 | { |
nothing calls this directly
no test coverage detected