| 1056 | } |
| 1057 | |
| 1058 | void SimXMLDocument::addComment(const char* comment) |
| 1059 | { |
| 1060 | TiXmlComment cComment; |
| 1061 | cComment.SetValue(comment); |
| 1062 | m_qDocument->InsertEndChild(cComment); |
| 1063 | } |
| 1064 | |
| 1065 | DefineEngineMethod(SimXMLDocument, addComment, void, ( const char* comment ),, |
| 1066 | "@brief Add the given comment as a child of the document.\n\n" |
no test coverage detected