WIP: add Qt Quick HomeScreen UI
[staging/HomeScreen.git] / HomeScreenNG / applicationlauncher.h
1 #ifndef APPLICATIONLAUNCHER_H
2 #define APPLICATIONLAUNCHER_H
3
4 #include <QtCore/QObject>
5
6 class ApplicationLauncher : public QObject
7 {
8     Q_OBJECT
9 public:
10     explicit ApplicationLauncher(QObject *parent = nullptr);
11
12 public slots:
13     void launch(const QString &application);
14 };
15
16 #endif // APPLICATIONLAUNCHER_H