| 1065 | } |
| 1066 | |
| 1067 | const char* XMLElement::GetText() const { |
| 1068 | if (FirstChild() && FirstChild()->ToText()) { |
| 1069 | return FirstChild()->ToText()->Value(); |
| 1070 | } |
| 1071 | return 0; |
| 1072 | } |
| 1073 | |
| 1074 | XMLError XMLElement::QueryIntText(int* ival) const { |
| 1075 | if (FirstChild() && FirstChild()->ToText()) { |