| 2011 | } |
| 2012 | |
| 2013 | XMLComment* XMLElement::InsertNewComment(const char* comment) |
| 2014 | { |
| 2015 | XMLComment* node = _document->NewComment(comment); |
| 2016 | return InsertEndChild(node) ? node : 0; |
| 2017 | } |
| 2018 | |
| 2019 | XMLText* XMLElement::InsertNewText(const char* text) |
| 2020 | { |
nothing calls this directly
no test coverage detected