| 1548 | |
| 1549 | |
| 1550 | XMLError XMLElement::QueryInt64Text(int64_t* ival) const |
| 1551 | { |
| 1552 | if (FirstChild() && FirstChild()->ToText()) { |
| 1553 | const char* t = FirstChild()->Value(); |
| 1554 | if (XMLUtil::ToInt64(t, ival)) { |
| 1555 | return XML_SUCCESS; |
| 1556 | } |
| 1557 | return XML_CAN_NOT_CONVERT_TEXT; |
| 1558 | } |
| 1559 | return XML_NO_TEXT_NODE; |
| 1560 | } |
| 1561 | |
| 1562 | |
| 1563 | XMLError XMLElement::QueryBoolText( bool* bval ) const |
nothing calls this directly
no test coverage detected