blob: ae2589a2e5ce143fc4e2564bda6325011fbf323d (
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
26
27
28
29
30
 | #ifndef MEECASTPROVIDER_H
#define MEECASTPROVIDER_H
#include <sowatch.h>
namespace sowatch
{
class MeeCastWeather;
class MeeCastProvider : public NotificationProvider
{
    Q_OBJECT
public:
	explicit MeeCastProvider(QObject *parent = 0);
	~MeeCastProvider();
	static const QLatin1String myId;
public slots:
	void generateNotification();
private:
};
}
#endif // HARMACCUPROVIDER_H
 |