| 1702 | } |
| 1703 | |
| 1704 | XMLError XMLElement::QueryIntText(int* ival) const |
| 1705 | { |
| 1706 | if (FirstChild() && FirstChild()->ToText()) |
| 1707 | { |
| 1708 | const char* t = FirstChild()->Value(); |
| 1709 | if (XMLUtil::ToInt(t, ival)) |
| 1710 | { |
| 1711 | return XML_SUCCESS; |
| 1712 | } |
| 1713 | return XML_CAN_NOT_CONVERT_TEXT; |
| 1714 | } |
| 1715 | return XML_NO_TEXT_NODE; |
| 1716 | } |
| 1717 | |
| 1718 | XMLError XMLElement::QueryUnsignedText(unsigned* uval) const |
| 1719 | { |
nothing calls this directly
no test coverage detected