| 354 | } |
| 355 | |
| 356 | void writeToXmlFile(DocumentPtr doc, const FilePath& filename, const XmlWriteOptions* writeOptions) |
| 357 | { |
| 358 | std::ofstream ofs(filename.asString()); |
| 359 | writeToXmlStream(doc, ofs, writeOptions); |
| 360 | } |
| 361 | |
| 362 | string writeToXmlString(DocumentPtr doc, const XmlWriteOptions* writeOptions) |
| 363 | { |
no test coverage detected