diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2012-08-15 15:53:09 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2012-08-15 15:53:09 +0200 |
commit | 2ecf718cc9d460ad192de196aac8d13e30a7ab4c (patch) | |
tree | 28ad0698f48e563ff0cca74c780e283ad16b7994 /meecastweather/meecastprovider.h | |
parent | c752ccafd8d826b3c0c9140e89ece09e90b34cb1 (diff) | |
download | sowatch-2ecf718cc9d460ad192de196aac8d13e30a7ab4c.tar.gz sowatch-2ecf718cc9d460ad192de196aac8d13e30a7ab4c.zip |
preparing meecastweather plugin
Diffstat (limited to 'meecastweather/meecastprovider.h')
-rw-r--r-- | meecastweather/meecastprovider.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meecastweather/meecastprovider.h b/meecastweather/meecastprovider.h new file mode 100644 index 0000000..4524e12 --- /dev/null +++ b/meecastweather/meecastprovider.h @@ -0,0 +1,28 @@ +#ifndef HARMACCUPROVIDER_H +#define HARMACCUPROVIDER_H + +#include <sowatch.h> + +namespace sowatch +{ + +class HarmAccuWeather; + +class HarmAccuProvider : public NotificationProvider +{ + Q_OBJECT + +public: + explicit HarmAccuProvider(QObject *parent = 0); + ~HarmAccuProvider(); + +public slots: + void generateNotification(); + +private: + +}; + +} + +#endif // HARMACCUPROVIDER_H |