blob: 44942adf41b36294373e6052045b08faa311da7c (
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
|
#ifndef CKITCALLPROVIDER_H
#define CKITCALLPROVIDER_H
#include <QtCore/QTimer>
#include <sowatch.h>
namespace sowatch
{
class HarmAccuWeather;
class HarmAccuProvider : public NotificationProvider
{
Q_OBJECT
public:
explicit HarmAccuProvider(int updateTime, QObject *parent = 0);
~HarmAccuProvider();
public slots:
void generateNotification();
private:
int _updateTime;
};
}
#endif // CKITCALLPROVIDER_H
|