| 1072 | } |
| 1073 | |
| 1074 | XMLError XMLElement::QueryIntText(int* ival) const { |
| 1075 | if (FirstChild() && FirstChild()->ToText()) { |
| 1076 | const char* t = FirstChild()->ToText()->Value(); |
| 1077 | if (XMLUtil::ToInt(t, ival)) { |
| 1078 | return XML_SUCCESS; |
| 1079 | } |
| 1080 | return XML_CAN_NOT_CONVERT_TEXT; |
| 1081 | } |
| 1082 | return XML_NO_TEXT_NODE; |
| 1083 | } |
| 1084 | |
| 1085 | XMLError XMLElement::QueryUnsignedText(unsigned* uval) const { |
| 1086 | if (FirstChild() && FirstChild()->ToText()) { |