source: ntrip/trunk/BNC/src/bncsettings.h@ 5066

Last change on this file since 5066 was 5066, checked in by mervart, 11 years ago
File size: 468 bytes
RevLine 
[1535]1#ifndef BNCSETTINGS_H
2#define BNCSETTINGS_H
3
[4072]4#include <QMutex>
[1535]5
[4070]6class bncSettings {
[1535]7 public:
[4077]8 bncSettings();
[4070]9 ~bncSettings();
10 QVariant value(const QString& key,
11 const QVariant& defaultValue = QVariant()) const;
12 void setValue(const QString &key, const QVariant& value);
13 void remove(const QString& key );
[4251]14 void reRead();
[4070]15 void sync();
[1535]16 private:
[4078]17 void setValue_p(const QString &key, const QVariant& value);
[4072]18 static QMutex _mutex;
[1535]19};
20
21#endif
Note: See TracBrowser for help on using the repository browser.