File indexing completed on 2024-04-28 16:43:18

0001 /*
0002     SPDX-FileCopyrightText: 2014 David Rosca <nowrep@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef LAUNCHAPP_H
0008 #define LAUNCHAPP_H
0009 
0010 #include <QObject>
0011 #include <QStringList>
0012 
0013 class LaunchApp : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     explicit LaunchApp(QObject *parent = nullptr);
0019 
0020 public Q_SLOTS:
0021     void launchWizard();
0022     void launchSendFile(const QString &ubi);
0023 };
0024 
0025 #endif // LAUNCHAPP_H