| 2029 | } |
| 2030 | |
| 2031 | XMLUnknown* XMLElement::InsertNewUnknown(const char* text) |
| 2032 | { |
| 2033 | XMLUnknown* node = _document->NewUnknown(text); |
| 2034 | return InsertEndChild(node) ? node : 0; |
| 2035 | } |
| 2036 | |
| 2037 | |
| 2038 |
nothing calls this directly
no test coverage detected