blob: 31182f18ca045abc43f2e54e8ed382cf75017d2f (
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
|
#ifndef SOWATCH_NOTIFICATIONPROVIDER_H
#define SOWATCH_NOTIFICATIONPROVIDER_H
#include <QtCore/QObject>
#include "notification.h"
namespace sowatch
{
class NotificationProvider : public QObject
{
Q_OBJECT
protected:
explicit NotificationProvider(QObject *parent = 0);
virtual ~NotificationProvider();
signals:
void incomingNotification(Notification* notification);
};
}
#endif // SOWATCH_NOTIFICATIONPROVIDER_H
|