| 1716 | } |
| 1717 | |
| 1718 | XMLError XMLElement::QueryUnsignedText(unsigned* uval) const |
| 1719 | { |
| 1720 | if (FirstChild() && FirstChild()->ToText()) |
| 1721 | { |
| 1722 | const char* t = FirstChild()->Value(); |
| 1723 | if (XMLUtil::ToUnsigned(t, uval)) |
| 1724 | { |
| 1725 | return XML_SUCCESS; |
| 1726 | } |
| 1727 | return XML_CAN_NOT_CONVERT_TEXT; |
| 1728 | } |
| 1729 | return XML_NO_TEXT_NODE; |
| 1730 | } |
| 1731 | |
| 1732 | XMLError XMLElement::QueryInt64Text(xml_Int64a_t* ival) const |
| 1733 | { |
nothing calls this directly
no test coverage detected