| 88 | } |
| 89 | |
| 90 | void cmXMLWriter::ProcessingInstruction(char const* target, char const* data) |
| 91 | { |
| 92 | this->CloseStartElement(); |
| 93 | this->ConditionalLineBreak(!this->IsContent); |
| 94 | this->Output << "<?" << target << ' ' << data << "?>"; |
| 95 | } |
| 96 | |
| 97 | void cmXMLWriter::FragmentFile(char const* fname) |
| 98 | { |