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