| 139 | { |
| 140 | public: |
| 141 | cmXMLDocument(cmXMLWriter& xml) |
| 142 | : xmlwr(xml) |
| 143 | { |
| 144 | this->xmlwr.StartDocument(); |
| 145 | } |
| 146 | ~cmXMLDocument() { this->xmlwr.EndDocument(); } |
| 147 | cmXMLDocument(cmXMLDocument const&) = delete; |
| 148 | cmXMLDocument& operator=(cmXMLDocument const&) = delete; |
nothing calls this directly
no test coverage detected