summaryrefslogtreecommitdiff
path: root/ckitcallnotification/ckitcallplugin.h
blob: b55f178eef9272e094632071c1ef435372e77dee (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 CKITCALLPLUGIN_H
#define CKITCALLPLUGIN_H

#include <sowatch.h>

namespace sowatch
{

class CKitCallPlugin : public QObject, public NotificationPluginInterface
{
	Q_OBJECT
	Q_INTERFACES(sowatch::NotificationPluginInterface)

public:
	CKitCallPlugin(QObject *parent = 0);
	~CKitCallPlugin();

	QStringList providers();
	NotificationProvider* getProvider(const QString& driver, ConfigKey *settings, QObject *parent = 0);
};

}

#endif // CKITCALLPLUGIN_H