aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreenNG/applicationlauncher.h
blob: 409de25aed387b4e7397530b3592a3998410bd61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef APPLICATIONLAUNCHER_H
#define APPLICATIONLAUNCHER_H

#include <QtCore/QObject>

class ApplicationLauncher : public QObject
{
    Q_OBJECT
public:
    explicit ApplicationLauncher(QObject *parent = nullptr);

public slots:
    void launch(const QString &application);
};

#endif // APPLICATIONLAUNCHER_H