| 1796 | |
| 1797 | |
| 1798 | XMLError XMLElement::QueryInt64Text(int64_t* ival) const |
| 1799 | { |
| 1800 | if (FirstChild() && FirstChild()->ToText()) { |
| 1801 | const char* t = FirstChild()->Value(); |
| 1802 | if (XMLUtil::ToInt64(t, ival)) { |
| 1803 | return XML_SUCCESS; |
| 1804 | } |
| 1805 | return XML_CAN_NOT_CONVERT_TEXT; |
| 1806 | } |
| 1807 | return XML_NO_TEXT_NODE; |
| 1808 | } |
| 1809 | |
| 1810 | |
| 1811 | XMLError XMLElement::QueryUnsigned64Text(uint64_t* uval) const |
nothing calls this directly
no test coverage detected