summaryrefslogtreecommitdiff
path: root/saltoqd/toqmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'saltoqd/toqmanager.cpp')
-rw-r--r--saltoqd/toqmanager.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/saltoqd/toqmanager.cpp b/saltoqd/toqmanager.cpp
index f03ba54..ea93d2a 100644
--- a/saltoqd/toqmanager.cpp
+++ b/saltoqd/toqmanager.cpp
@@ -11,6 +11,7 @@
#include "commmanager.h"
#include "voicecallmanager.h"
#include "weathermanager.h"
+#include "notificationmanager.h"
static const bool PROTO_DEBUG = true;
@@ -27,7 +28,8 @@ ToqManager::ToqManager(MDConfGroup *settings, QObject *parent) :
_contactsManager(new ContactsManager(_storageManager, this)),
_commManager(new CommManager(_settings, _storageManager, _contactsManager, this)),
_voiceCallManager(new VoiceCallManager(this)),
- _weatherManager(new WeatherManager(_fmsManager, this))
+ _weatherManager(new WeatherManager(_fmsManager, this)),
+ _notificationManager(new NotificationManager(this))
{
connect(_conn, &ToqConnection::messageReceived,
this, &ToqManager::handleToqMessage);