kDB: Knowledge DataBase
Loading...
Searching...
No Matches
NotificationHandler_p.h
1#ifndef _KDB_REPOSITORY_NOTIFICATIONHANDLER_H_
2#define _KDB_REPOSITORY_NOTIFICATIONHANDLER_H_
3
4#include <QObject>
5
6namespace kDB
7{
8 namespace Repository
9 {
10 class NotificationsManager;
11 class NotificationHandler : public QObject
12 {
13 Q_OBJECT
14 friend class NotificationsManager;
17 public:
18 signals:
19 void triggered(const QByteArray& _payload);
20 };
21 } // namespace Repository
22} // namespace kDB
23
24#endif
Definition NotificationHandler_p.h:12
Definition NotificationsManager.h:11