blob: f98f22653781ab88cc186ba59b6938a511796d25 (
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
26
27
28
29
30
31
|
#ifndef MEEGOHANDSETNOTIFICATIONPROVIDER_H
#define MEEGOHANDSETNOTIFICATIONPROVIDER_H
#include <sowatch.h>
class MNotificationManagerInterface;
class WatchNotificationSink;
namespace sowatch
{
class MeegoHandsetNotificationProvider : public NotificationProvider
{
Q_OBJECT
public:
explicit MeegoHandsetNotificationProvider(QObject *parent = 0);
~MeegoHandsetNotificationProvider();
protected:
MNotificationManagerInterface* _manager;
WatchNotificationSink* _sink;
protected slots:
void newNotification(sowatch::Notification *n);
friend class WatchNoficationSink;
};
}
#endif // MEEGOHANDSETNOTIFICATIONPROVIDER_H
|