diff options
| author | Andrew Branson <andrew.branson@cern.ch> | 2016-03-01 09:13:06 +0100 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2016-03-01 09:13:06 +0100 |
| commit | 3ce36b764fc55bdfc8fe98395cab072d50855e28 (patch) | |
| tree | ddf0a92af9ed0389f88d970ab1a61190baa7d893 /daemon/manager.cpp | |
| parent | 3a4e80053081ab7f5de142bfbc6589dfc2bc6e2d (diff) | |
New managers from javispedro
AppFetchManager, BlobDBManager
Diffstat (limited to 'daemon/manager.cpp')
| -rw-r--r-- | daemon/manager.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/daemon/manager.cpp b/daemon/manager.cpp index 0b365c3..c2e37e2 100644 --- a/daemon/manager.cpp +++ b/daemon/manager.cpp @@ -11,9 +11,10 @@ Manager::Manager(Settings *settings, QObject *parent) : proxy(new PebbledProxy(this)),
watch(new WatchConnector(this)),
upload(new UploadManager(watch, this)),
- apps(new AppManager(this)),
+ blobdb(new BlobDbManager(watch, this)),
+ apps(new AppManager(blobdb, this)),
bank(new BankManager(watch, upload, apps, this)),
- fetch(new AppFetchManager(watch, upload, apps, this)), + fetch(new AppFetchManager(watch, upload, apps, this)),
voice(new VoiceCallManager(settings, this)),
notifications(new NotificationManager(settings, this)),
music(new MusicManager(watch, settings, this)),
@@ -59,7 +60,7 @@ Manager::Manager(Settings *settings, QObject *parent) : connect(notifications, SIGNAL(facebookNotify(const QString &,const QString &)), SLOT(onFacebookNotify(const QString &,const QString &)));
connect(notifications, SIGNAL(telegramNotify(const QString &,const QString &)), SLOT(onTelegramNotify(const QString &,const QString &)));
connect(notifications, SIGNAL(hangoutsNotify(const QString &,const QString &)), SLOT(onHangoutsNotify(const QString &,const QString &)));
- connect(notifications, SIGNAL(whatappNotify(const QString &,const QString &)), SLOT(onWhatsappNotify(const QString &,const QString &)));
+ connect(notifications, SIGNAL(whatsappNotify(const QString &,const QString &)), SLOT(onWhatsappNotify(const QString &,const QString &)));
connect(appmsg, &AppMsgManager::appStarted, this, &Manager::onAppOpened);
connect(appmsg, &AppMsgManager::appStopped, this, &Manager::onAppClosed);
|
