| 2023 | } |
| 2024 | |
| 2025 | XMLDeclaration* XMLElement::InsertNewDeclaration(const char* text) |
| 2026 | { |
| 2027 | XMLDeclaration* node = _document->NewDeclaration(text); |
| 2028 | return InsertEndChild(node) ? node : 0; |
| 2029 | } |
| 2030 | |
| 2031 | XMLUnknown* XMLElement::InsertNewUnknown(const char* text) |
| 2032 | { |
nothing calls this directly
no test coverage detected