| 774 | |
| 775 | |
| 776 | bool Map::exportToIODevice(QIODevice& device) const |
| 777 | { |
| 778 | XMLFileExporter exporter({}, this, nullptr); |
| 779 | exporter.setDevice(&device); |
| 780 | auto success = exporter.doExport(); |
| 781 | device.close(); |
| 782 | return success; |
| 783 | } |
| 784 | |
| 785 | |
| 786 | bool Map::importFromIODevice(QIODevice& device) |
no test coverage detected