| 75 | } |
| 76 | |
| 77 | void cmXMLWriter::CData(std::string const& data) |
| 78 | { |
| 79 | this->PreContent(); |
| 80 | this->Output << "<![CDATA[" << data << "]]>"; |
| 81 | } |
| 82 | |
| 83 | void cmXMLWriter::Doctype(char const* doctype) |
| 84 | { |
nothing calls this directly
no test coverage detected