summaryrefslogtreecommitdiff
path: root/meecastweather/meecastplugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'meecastweather/meecastplugin.h')
-rw-r--r--meecastweather/meecastplugin.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/meecastweather/meecastplugin.h b/meecastweather/meecastplugin.h
new file mode 100644
index 0000000..535b4a2
--- /dev/null
+++ b/meecastweather/meecastplugin.h
@@ -0,0 +1,25 @@
+#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();
+ NotificationProviderInfo describeProvider(const QString &driver);
+ NotificationProvider* getProvider(const QString& driver, ConfigKey *settings, QObject *parent = 0);
+};
+
+}
+
+#endif // CKITCALLPLUGIN_H