| 2017 | } |
| 2018 | |
| 2019 | XMLText* XMLElement::InsertNewText(const char* text) |
| 2020 | { |
| 2021 | XMLText* node = _document->NewText(text); |
| 2022 | return InsertEndChild(node) ? node : 0; |
| 2023 | } |
| 2024 | |
| 2025 | XMLDeclaration* XMLElement::InsertNewDeclaration(const char* text) |
| 2026 | { |