summaryrefslogtreecommitdiff
path: root/src/notificationmonitor.h
blob: e8b6501e6870a6413c09352ba876ad8f00b17a41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef NOTIFICATIONMONITOR_H
#define NOTIFICATIONMONITOR_H

#include <QtCore/QObject>

#include "notification.h"

class NotificationMonitor : public QObject
{
	Q_OBJECT

public:
	~NotificationMonitor();

	static NotificationMonitor *instance();

private:
	explicit NotificationMonitor(QObject *parent = 0);
};

#endif // NOTIFICATIONMONITOR_H