| 784 | |
| 785 | |
| 786 | bool Map::importFromIODevice(QIODevice& device) |
| 787 | { |
| 788 | XMLFileImporter importer {{}, this, nullptr}; |
| 789 | importer.setDevice(&device); |
| 790 | auto success = importer.doImport(); |
| 791 | device.close(); |
| 792 | return success; |
| 793 | } |
| 794 | |
| 795 | |
| 796 |
no test coverage detected