summaryrefslogtreecommitdiff
path: root/daemon/manager.h
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2014-11-29 21:08:56 +0100
committerJavier <dev.git@javispedro.com>2014-11-29 21:08:56 +0100
commit67e85358bc789e93f3f17527d9f721d6a9e5f94d (patch)
tree27fb32f683289308434821fabb86f7d4c53a0e50 /daemon/manager.h
parentecba425f8c029e103211446e9f250927a832315f (diff)
introduce the appmanager
Diffstat (limited to 'daemon/manager.h')
-rw-r--r--daemon/manager.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/daemon/manager.h b/daemon/manager.h
index 9de5667..5946bf0 100644
--- a/daemon/manager.h
+++ b/daemon/manager.h
@@ -5,6 +5,7 @@
#include "dbusconnector.h"
#include "voicecallmanager.h"
#include "notificationmanager.h"
+#include "appmanager.h"
#include "watchcommands.h"
#include "settings.h"
@@ -38,6 +39,7 @@ class Manager :
DBusConnector *dbus;
VoiceCallManager *voice;
NotificationManager *notifications;
+ AppManager *apps;
WatchCommands *commands;
@@ -55,7 +57,7 @@ class Manager :
QScopedPointer<icu::Transliterator> transliterator;
public:
- explicit Manager(watch::WatchConnector *watch, DBusConnector *dbus, VoiceCallManager *voice, NotificationManager *notifications, Settings *settings);
+ explicit Manager(watch::WatchConnector *watch, DBusConnector *dbus, VoiceCallManager *voice, NotificationManager *notifications, AppManager *apps, Settings *settings);
Q_INVOKABLE QString findPersonByNumber(QString number);
Q_INVOKABLE QString getCurrentProfile();