| 2055 | } |
| 2056 | |
| 2057 | XMLDeclaration* XMLElement::InsertNewDeclaration(const char* text) |
| 2058 | { |
| 2059 | XMLDeclaration* node = _document->NewDeclaration(text); |
| 2060 | return InsertEndChild(node) ? node : 0; |
| 2061 | } |
| 2062 | |
| 2063 | XMLUnknown* XMLElement::InsertNewUnknown(const char* text) |
| 2064 | { |
nothing calls this directly
no test coverage detected