| 449 | |
| 450 | |
| 451 | void XMLWriter::comment(const XMLChar ch[], int start, int length) |
| 452 | { |
| 453 | if (_unclosedStartTag) closeStartTag(); |
| 454 | prettyPrint(); |
| 455 | writeMarkup("<!--"); |
| 456 | while (length-- > 0) writeXML(ch[start++]); |
| 457 | writeMarkup("-->"); |
| 458 | _contentWritten = false; |
| 459 | } |
| 460 | |
| 461 | |
| 462 | void XMLWriter::startDTD(const XMLString& name, const XMLString& publicId, const XMLString& systemId) |
no outgoing calls
no test coverage detected