aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreenNG/applicationlauncher.cpp
blob: c4254cef4084c65381a4227c0137eedec7dacb0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "applicationlauncher.h"

#include <QtCore/QDebug>

ApplicationLauncher::ApplicationLauncher(QObject *parent)
    : QObject(parent)
{
}

void ApplicationLauncher::launch(const QString &application)
{
    qDebug() << "launch" << application;
}