aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreenNG/applicationlauncher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'HomeScreenNG/applicationlauncher.cpp')
-rw-r--r--HomeScreenNG/applicationlauncher.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/HomeScreenNG/applicationlauncher.cpp b/HomeScreenNG/applicationlauncher.cpp
new file mode 100644
index 0000000..c4254ce
--- /dev/null
+++ b/HomeScreenNG/applicationlauncher.cpp
@@ -0,0 +1,13 @@
+#include "applicationlauncher.h"
+
+#include <QtCore/QDebug>
+
+ApplicationLauncher::ApplicationLauncher(QObject *parent)
+ : QObject(parent)
+{
+}
+
+void ApplicationLauncher::launch(const QString &application)
+{
+ qDebug() << "launch" << application;
+}