blob: 522f7975306f361962db01f1fdce4b4a48ce3240 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef WEATHERMANAGER_H
#define WEATHERMANAGER_H
#include "toqmanager.h"
class WeatherManager : public QObject
{
Q_OBJECT
public:
explicit WeatherManager(FmsManager *fms, ToqManager *toq);
private slots:
void handleToqConnected();
private:
ToqManager *_toq;
FmsManager *_fms;
};
#endif // WEATHERMANAGER_H
|