WIP: add Qt Quick HomeScreen UI
[staging/HomeScreen.git] / HomeScreenNG / applicationlauncher.cpp
1 #include "applicationlauncher.h"
2
3 #include <QtCore/QDebug>
4
5 ApplicationLauncher::ApplicationLauncher(QObject *parent)
6     : QObject(parent)
7 {
8 }
9
10 void ApplicationLauncher::launch(const QString &application)
11 {
12     qDebug() << "launch" << application;
13 }