source:
ntrip/trunk/BNC/bncsettings.h@
4071
| Last change on this file since 4071 was 4070, checked in by , 14 years ago | |
|---|---|
| File size: 421 bytes | |
| Line | |
|---|---|
| 1 | #ifndef BNCSETTINGS_H |
| 2 | #define BNCSETTINGS_H |
| 3 | |
| 4 | #include <QSettings> |
| 5 | |
| 6 | class bncApp; |
| 7 | |
| 8 | class bncSettings { |
| 9 | public: |
| 10 | bncSettings(bool noInit = false); |
| 11 | ~bncSettings(); |
| 12 | QVariant value(const QString& key, |
| 13 | const QVariant& defaultValue = QVariant()) const; |
| 14 | void setValue(const QString &key, const QVariant& value); |
| 15 | void remove(const QString& key ); |
| 16 | void sync(); |
| 17 | private: |
| 18 | bncApp* _bncApp; |
| 19 | }; |
| 20 | |
| 21 | #endif |
Note:
See TracBrowser
for help on using the repository browser.
