File indexing completed on 2025-01-05 04:01:22
0001 /* 0002 * SPDX-FileCopyrightText: 2019-2023 Mattia Basaglia <dev@dragon.best> 0003 * 0004 * SPDX-License-Identifier: GPL-3.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include <QDir> 0010 #include <QVariant> 0011 0012 namespace glaxnimate::io { 0013 0014 0015 class ImportExport; 0016 0017 struct Options 0018 { 0019 ImportExport* format = nullptr; 0020 QDir path; 0021 QString filename; 0022 QVariantMap settings; 0023 0024 void clear() 0025 { 0026 *this = {}; 0027 } 0028 }; 0029 0030 0031 } // namespace glaxnimate::io