summaryrefslogtreecommitdiff
path: root/notificationswatchlet/notificationswatchletplugin.h
blob: bc305fcd5c15a890a65d10a8f7ecb14ec3b585fe (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 NOTIFICATIONSWATCHLETPLUGIN_H
#define NOTIFICATIONSWATCHLETPLUGIN_H

#include <sowatch.h>

namespace sowatch
{

class NotificationsWatchletPlugin : public QObject, public WatchletPluginInterface
{
	Q_OBJECT
	Q_INTERFACES(sowatch::WatchletPluginInterface)

public:
	explicit NotificationsWatchletPlugin(QObject *parent = 0);
	~NotificationsWatchletPlugin();

	QStringList watchlets();
	Watchlet* getWatchlet(const QString& driver, ConfigKey *settings, WatchServer* server);
};

}

#endif // NOTIFICATIONSWATCHLETPLUGIN_H