| 1848 | |
| 1849 | |
| 1850 | XMLError XMLElement::QueryFloatText( float* fval ) const |
| 1851 | { |
| 1852 | if ( FirstChild() && FirstChild()->ToText() ) { |
| 1853 | const char* t = FirstChild()->Value(); |
| 1854 | if ( XMLUtil::ToFloat( t, fval ) ) { |
| 1855 | return XML_SUCCESS; |
| 1856 | } |
| 1857 | return XML_CAN_NOT_CONVERT_TEXT; |
| 1858 | } |
| 1859 | return XML_NO_TEXT_NODE; |
| 1860 | } |
| 1861 | |
| 1862 | int XMLElement::IntText(int defaultValue) const |
| 1863 | { |
nothing calls this directly
no test coverage detected