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