File indexing completed on 2024-04-28 04:05:19

0001 /*
0002     SPDX-FileCopyrightText: 2009-2011 Stefan Majewsky <majewsky@gmx.net>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef PALAPELI_IMPORTHELPER_H
0008 #define PALAPELI_IMPORTHELPER_H
0009 
0010 #include <QObject>
0011 
0012 namespace Palapeli
0013 {
0014     class ImportHelper : public QObject
0015     {
0016         Q_OBJECT
0017         public:
0018             explicit ImportHelper(const QString &path);
0019         public Q_SLOTS:
0020             void doWork();
0021         private:
0022             QString m_path;
0023     };
0024 }
0025 
0026 #endif // PALAPELI_IMPORTHELPER_H