WIP: add Qt Quick HomeScreen UI
[staging/HomeScreen.git] / HomeScreenNG / applicationlauncher.cpp
diff --git a/HomeScreenNG/applicationlauncher.cpp b/HomeScreenNG/applicationlauncher.cpp
new file mode 100644 (file)
index 0000000..c4254ce
--- /dev/null
@@ -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;
+}