summaryrefslogtreecommitdiff
path: root/meecastweather/meecastplugin.h
diff options
context:
space:
mode:
authorJavier S. Pedro <maemo@javispedro.com>2012-08-15 15:53:09 +0200
committerJavier S. Pedro <maemo@javispedro.com>2012-08-15 15:53:09 +0200
commit2ecf718cc9d460ad192de196aac8d13e30a7ab4c (patch)
tree28ad0698f48e563ff0cca74c780e283ad16b7994 /meecastweather/meecastplugin.h
parentc752ccafd8d826b3c0c9140e89ece09e90b34cb1 (diff)
downloadsowatch-2ecf718cc9d460ad192de196aac8d13e30a7ab4c.tar.gz
sowatch-2ecf718cc9d460ad192de196aac8d13e30a7ab4c.zip
preparing meecastweather plugin
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