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

Last change on this file since 3633 was 3633, checked in by mervart, 12 years ago
File size: 1.8 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
28#include <QtCore>
29
30class t_pppOpt {
31 public:
32 t_pppOpt();
33 ~t_pppOpt();
34 bool refCrdSet() {
35 return refCrd[0] != 0.0 || refCrd[1] != 0 || refCrd[2] != 0.0;
36 }
37 double sigmaCode;
38 double sigmaPhase;
39 double sigCrd0;
40 double sigCrdP;
41 double sigTrp0;
42 double sigTrpP;
43 double refCrd[3];
44 double antEccNEU[3];
45 double maxSolGap;
46 double quickStart;
47 double corrSync;
48 QString pppCorrMount;
49 QString nmeaFile;
50 QString antexFile;
51 QString antennaName;
52 bool pppMode;
53 bool rnxAppend;
54 bool usePhase;
55 bool estTropo;
56 bool useGlonass;
57 bool useGalileo;
58 private:
59 double settingsToDouble(const QByteArray& keyName, double defaultValue = 0.0) const;
60 bool settingsChecked(const QByteArray& keyName) const;
61};
62
63#endif
Note: See TracBrowser for help on using the repository browser.