source: ntrip/trunk/BNS/bnssettings.cpp@ 1728

Last change on this file since 1728 was 1728, checked in by weber, 15 years ago

* empty log message *

File size: 1.9 KB
Line 
1/* -------------------------------------------------------------------------
2 * BKG NTRIP Server
3 * -------------------------------------------------------------------------
4 *
5 * Class: bnsSettings
6 *
7 * Purpose: Subclasses the QSettings
8 *
9 * Author: G. Weber
10 *
11 * Created: 27-Feb-2009
12 *
13 * Changes:
14 *
15 * -----------------------------------------------------------------------*/
16
17#include "bnssettings.h"
18#include "bnsapp.h"
19
20// Constructor
21////////////////////////////////////////////////////////////////////////////
22bnsSettings::bnsSettings() :
23 QSettings(((bnsApp*) qApp)->confFileName(), QSettings::IniFormat) {
24
25 if (allKeys().size() == 0) {
26 setValue("proxyHost", "");
27 setValue("proxyPort", "");
28
29 setValue("logFile", "");
30 setValue("fileAppend", "0");
31 setValue("autoStart", "0");
32
33 setValue("ephHost", "");
34 setValue("ephPort", "");
35 setValue("ephEcho", "");
36
37 setValue("clkPort", "");
38 setValue("inpEcho", "");
39
40 setValue("outHost1", "");
41 setValue("outPort1", "");
42 setValue("mountpoint_1","");
43 setValue("password1", "");
44 setValue("refSys_1", "IGS05");
45 setValue("beClocks1", "0");
46 setValue("outFile_1", "");
47
48 setValue("outHost2", "");
49 setValue("outPort2", "");
50 setValue("mountpoint_2","");
51 setValue("password2", "");
52 setValue("refSys_2", "IGS05");
53 setValue("beClocks2", "0");
54 setValue("outFile_2", "");
55
56 setValue("outHost3", "");
57 setValue("outPort3", "");
58 setValue("mountpoint_3","");
59 setValue("password3", "");
60 setValue("refSys_3", "IGS05");
61 setValue("beClocks3", "0");
62 setValue("outFile_3", "");
63
64 setValue("rnxPath", "");
65 setValue("rnxIntr", "1 min");
66 setValue("rnxSampl", "0");
67
68 setValue("sp3Path", "");
69 setValue("sp3Intr", "10 min");
70 setValue("sp3Sampl", "0");
71
72 setValue("startTab", "0");
73 sync();
74 }
75}
76
Note: See TracBrowser for help on using the repository browser.