#include #include #include "applicationhandler.h" ApplicationHandler::ApplicationHandler(QObject *parent, Launcher *launcher) : QObject(parent) { m_launcher = launcher; } ApplicationHandler::~ApplicationHandler() { } size_t ApplicationHandler::getRunnables(void) { QString data; size_t runnables = 0; if (m_launcher == nullptr) return runnables; runnables = m_launcher->get_list_runnables(data); emit initAppList(data); return runnables; }