Changeset 7040 in ntrip for trunk/BNC/src
- Timestamp:
- Jul 13, 2015, 5:33:19 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/PPP_SSR_I/pppClient.cpp ¶
r7031 r7040 153 153 QString prn = it.key(); 154 154 t_satData* satData = it.value(); 155 155 156 156 if (cmpToT(satData) != success) { 157 157 delete satData; … … 159 159 continue; 160 160 } 161 161 162 } 162 163 … … 343 344 ////////////////////////////////////////////////////////////////////////////// 344 345 void t_pppClient::putEphemeris(const t_eph* eph) { 346 bool check = _opt->_realTime; 345 347 const t_ephGPS* ephGPS = dynamic_cast<const t_ephGPS*>(eph); 346 348 const t_ephGlo* ephGlo = dynamic_cast<const t_ephGlo*>(eph); … … 348 350 const t_ephBDS* ephBDS = dynamic_cast<const t_ephBDS*>(eph); 349 351 if (ephGPS) { 350 _ephUser->putNewEph(new t_ephGPS(*ephGPS), true);352 _ephUser->putNewEph(new t_ephGPS(*ephGPS), check); 351 353 } 352 354 else if (ephGlo) { 353 _ephUser->putNewEph(new t_ephGlo(*ephGlo), true);355 _ephUser->putNewEph(new t_ephGlo(*ephGlo), check); 354 356 } 355 357 else if (ephGal) { 356 _ephUser->putNewEph(new t_ephGal(*ephGal), true);358 _ephUser->putNewEph(new t_ephGal(*ephGal), check); 357 359 } 358 360 else if (ephBDS) { 359 _ephUser->putNewEph(new t_ephBDS(*ephBDS), true);361 _ephUser->putNewEph(new t_ephBDS(*ephBDS), check); 360 362 } 361 363 }
Note:
See TracChangeset
for help on using the changeset viewer.