blob: 857228c6ce4ca64395c2095387dff5cbe8f9421c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef SETTINGSMANAGER_H
#define SETTINGSMANAGER_H
#include "toqmanager.h"
class SettingsManager : public QObject
{
Q_OBJECT
public:
explicit SettingsManager(Settings *settings, FmsManager *fms, ToqManager *toq);
public slots:
void sync();
private:
ToqManager *_toq;
FmsManager *_fms;
Settings *_settings;
};
#endif // SETTINGSMANAGER_H
|