Changeset 2799 in ntrip
- Timestamp:
- Dec 14, 2010, 4:21:41 PM (14 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncmodel.cpp
r2798 r2799 204 204 _ellBanc.ReSize(3); _ellBanc = 0.0; 205 205 206 if (_usePhase &&207 Qt::CheckState(settings.value("pppGLONASS").toInt()) == Qt::Checked) {208 _useGlonass = true;209 }210 else {211 _useGlonass = false;212 }213 214 if ( Qt::CheckState(settings.value("pppGalileo").toInt()) == Qt::Checked) {215 _useGalileo = true;216 }217 else {218 _useGalileo = false;219 }220 221 206 int nextPar = 0; 222 207 _params.push_back(new bncParam(bncParam::CRD_X, ++nextPar, "")); … … 227 212 _params.push_back(new bncParam(bncParam::TROPO, ++nextPar, "")); 228 213 } 229 if ( _useGalileo) {214 if ( Qt::CheckState(settings.value("pppGalileo").toInt()) == Qt::Checked) { 230 215 _params.push_back(new bncParam(bncParam::GALILEO_OFFSET, ++nextPar, "")); 231 216 } -
trunk/BNC/bncmodel.h
r2792 r2799 139 139 QFile* _nmeaFile; 140 140 QTextStream* _nmeaStream; 141 bool _useGlonass;142 bool _useGalileo;143 141 QMap<QString, double> _windUpTime; 144 142 QMap<QString, double> _windUpSum;
Note:
See TracChangeset
for help on using the changeset viewer.