diff options
Diffstat (limited to 'harmaccuweather/harmaccuplugin.h')
-rw-r--r-- | harmaccuweather/harmaccuplugin.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/harmaccuweather/harmaccuplugin.h b/harmaccuweather/harmaccuplugin.h new file mode 100644 index 0000000..16198ad --- /dev/null +++ b/harmaccuweather/harmaccuplugin.h @@ -0,0 +1,24 @@ +#ifndef CKITCALLPLUGIN_H +#define CKITCALLPLUGIN_H + +#include <sowatch.h> + +namespace sowatch +{ + +class HarmAccuPlugin : public QObject, public NotificationPluginInterface +{ + Q_OBJECT + Q_INTERFACES(sowatch::NotificationPluginInterface) + +public: + HarmAccuPlugin(QObject *parent = 0); + ~HarmAccuPlugin(); + + QStringList providers(); + NotificationProvider* getProvider(const QString& driver, QSettings& settings, QObject *parent = 0); +}; + +} + +#endif // CKITCALLPLUGIN_H |