| 2061 | } |
| 2062 | |
| 2063 | XMLUnknown* XMLElement::InsertNewUnknown(const char* text) |
| 2064 | { |
| 2065 | XMLUnknown* node = _document->NewUnknown(text); |
| 2066 | return InsertEndChild(node) ? node : 0; |
| 2067 | } |
| 2068 | |
| 2069 | |
| 2070 |
nothing calls this directly
no test coverage detected