| 303 | |
| 304 | |
| 305 | void DOMBuilder::comment(const XMLChar ch[], int start, int length) |
| 306 | { |
| 307 | AutoPtr<Comment> pComment = _pDocument->createComment(XMLString(ch + start, length)); |
| 308 | appendNode(pComment); |
| 309 | } |
| 310 | |
| 311 | |
| 312 | } } // namespace Poco::XML |
nothing calls this directly
no test coverage detected