| 1764 | |
| 1765 | |
| 1766 | XMLError XMLElement::QueryInt64Text(int64_t* ival) const |
| 1767 | { |
| 1768 | if (FirstChild() && FirstChild()->ToText()) { |
| 1769 | const char* t = FirstChild()->Value(); |
| 1770 | if (XMLUtil::ToInt64(t, ival)) { |
| 1771 | return XML_SUCCESS; |
| 1772 | } |
| 1773 | return XML_CAN_NOT_CONVERT_TEXT; |
| 1774 | } |
| 1775 | return XML_NO_TEXT_NODE; |
| 1776 | } |
| 1777 | |
| 1778 | |
| 1779 | XMLError XMLElement::QueryUnsigned64Text(uint64_t* ival) const |
nothing calls this directly
no test coverage detected