| 2049 | } |
| 2050 | |
| 2051 | XMLText* XMLElement::InsertNewText(const char* text) |
| 2052 | { |
| 2053 | XMLText* node = _document->NewText(text); |
| 2054 | return InsertEndChild(node) ? node : 0; |
| 2055 | } |
| 2056 | |
| 2057 | XMLDeclaration* XMLElement::InsertNewDeclaration(const char* text) |
| 2058 | { |