summaryrefslogtreecommitdiff
path: root/saltoqd/notificationmanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'saltoqd/notificationmanager.h')
-rw-r--r--saltoqd/notificationmanager.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/saltoqd/notificationmanager.h b/saltoqd/notificationmanager.h
index 2e8398a..5280073 100644
--- a/saltoqd/notificationmanager.h
+++ b/saltoqd/notificationmanager.h
@@ -3,8 +3,11 @@
#include "cardmanager.h"
-class MonitoredNotification;
+namespace watchfish
+{
+class Notification;
class NotificationMonitor;
+}
class NotificationManager : public QObject
{
@@ -14,13 +17,13 @@ public:
explicit NotificationManager(CardManager *card, ToqManager *toq);
private slots:
- void handleNotification(MonitoredNotification *n);
+ void handleNotification(watchfish::Notification *n);
void handleNotificationBodyChanged();
void handleClosedNotification();
private:
ToqManager *_toq;
- NotificationMonitor *_monitor;
+ watchfish::NotificationMonitor *_monitor;
CardManager *_card;
CardDeck *_deck;
QMap<uint, Card*> _cards;