blob: 03ebb301057a6b406a52adcfdcae1d260b9e0301 (
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
|
#ifndef TESTNOTIFICATIONPLUGIN_H
#define TESTNOTIFICATIONPLUGIN_H
#include <sowatch.h>
namespace sowatch
{
class TestNotificationPlugin : public QObject, public NotificationPluginInterface
{
Q_OBJECT
Q_INTERFACES(sowatch::NotificationPluginInterface)
public:
TestNotificationPlugin(QObject *parent = 0);
~TestNotificationPlugin();
QStringList providers();
NotificationProviderInfo describeProvider(const QString &driver);
NotificationProvider* getProvider(const QString& driver, ConfigKey *settings, QObject *parent = 0);
};
}
#endif // TESTNOTIFICATIONPLUGIN_H
|