| 68 | } |
| 69 | |
| 70 | void cmXMLWriter::Comment(char const* comment) |
| 71 | { |
| 72 | this->CloseStartElement(); |
| 73 | this->ConditionalLineBreak(!this->IsContent); |
| 74 | this->Output << "<!-- " << comment << " -->"; |
| 75 | } |
| 76 | |
| 77 | void cmXMLWriter::CData(std::string const& data) |
| 78 | { |