| 1410 | |
| 1411 | |
| 1412 | XMLError XMLElement::QueryBoolText( bool* bval ) const |
| 1413 | { |
| 1414 | if ( FirstChild() && FirstChild()->ToText() ) { |
| 1415 | const char* t = FirstChild()->Value(); |
| 1416 | if ( XMLUtil::ToBool( t, bval ) ) { |
| 1417 | return XML_SUCCESS; |
| 1418 | } |
| 1419 | return XML_CAN_NOT_CONVERT_TEXT; |
| 1420 | } |
| 1421 | return XML_NO_TEXT_NODE; |
| 1422 | } |
| 1423 | |
| 1424 | |
| 1425 | XMLError XMLElement::QueryDoubleText( double* dval ) const |
nothing calls this directly
no test coverage detected