source: ntrip/trunk/BNC/pppopt.h@ 3632

Last change on this file since 3632 was 3632, checked in by mervart, 12 years ago
File size: 1.7 KB
Line 
1// Part of BNC, a utility for retrieving decoding and
2// converting GNSS data streams from NTRIP broadcasters.
3//
4// Copyright (C) 2007
5// German Federal Agency for Cartography and Geodesy (BKG)
6// http://www.bkg.bund.de
7// Czech Technical University Prague, Department of Geodesy
8// http://www.fsv.cvut.cz
9//
10// Email: euref-ip@bkg.bund.de
11//
12// This program is free software; you can redistribute it and/or
13// modify it under the terms of the GNU General Public License
14// as published by the Free Software Foundation, version 2.
15//
16// This program is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU General Public License for more details.
20//
21// You should have received a copy of the GNU General Public License
22// along with this program; if not, write to the Free Software
23// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24
25#ifndef PPPOPT_H
26#define PPPOPT_H
27
28class t_pppOpt {
29 public:
30 t_pppOpt();
31 ~t_pppOpt();
32 bool refCrdSet() {
33 return refCrd[0] != 0.0 || refCrd[1] != 0 || refCrd[2] != 0.0;
34 }
35 double sigmaCode;
36 double sigmaPhase;
37 double sigCrd0;
38 double sigCrdP;
39 double sigTrp0;
40 double sigTrpP;
41 double refCrd[3];
42 double antEccNEU[3];
43 double pppCorrMount;
44 double maxSolGap;
45 double quickStart;
46 double corrSync;
47 QString nmeaFile;
48 QString antexFile;
49 QString antennaName;
50 bool pppMode;
51 bool rnxAppend;
52 bool usePhase;
53 bool estTropo;
54 bool useGlonass;
55 bool useGalileo;
56 private:
57 double settingsToDouble(const QByteArray& keyName, double defaultValue = 0.0) const;
58 bool settingsChecked(const QByteArray& keyName) const;
59};
60
61#endif
Note: See TracBrowser for help on using the repository browser.