blob: d5449f85bc6568166a2114a75f91f00cefeeba78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef SOWATCH_NOTIFICATIONPROVIDER_H
#define SOWATCH_NOTIFICATIONPROVIDER_H
#include <QtCore/QObject>
#include "notification.h"
#include "sowatch_global.h"
namespace sowatch
{
class SOWATCH_EXPORT NotificationProvider : public QObject
{
Q_OBJECT
protected:
explicit NotificationProvider(QObject *parent = 0);
virtual ~NotificationProvider();
signals:
void incomingNotification(Notification* notification);
};
}
#endif // SOWATCH_NOTIFICATIONPROVIDER_H
|