Changeset 6465 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Dec 27, 2014, 6:04:02 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppEphPool.cpp
r6143 r6465 38 38 void t_pppEphPool::putOrbCorrection(t_orbCorr* corr) { 39 39 if (corr) { 40 _satEphPool[corr-> prn().toInt()].putOrbCorrection(corr);40 _satEphPool[corr->_prn.toInt()].putOrbCorrection(corr); 41 41 } 42 42 } … … 46 46 void t_pppEphPool::putClkCorrection(t_clkCorr* corr) { 47 47 if (corr) { 48 _satEphPool[corr-> prn().toInt()].putClkCorrection(corr);48 _satEphPool[corr->_prn.toInt()].putClkCorrection(corr); 49 49 } 50 50 } … … 83 83 for (unsigned ii = 0; ii < _ephs.size(); ii++) { 84 84 t_eph* eph = _ephs[ii]; 85 if (eph->IOD() == corr-> IOD()) {85 if (eph->IOD() == corr->_iod) { 86 86 eph->setOrbCorr(corr); 87 87 return; … … 96 96 for (unsigned ii = 0; ii < _ephs.size(); ii++) { 97 97 t_eph* eph = _ephs[ii]; 98 if (eph->IOD() == corr-> IOD()) {98 if (eph->IOD() == corr->_iod) { 99 99 eph->setClkCorr(corr); 100 100 }
Note:
See TracChangeset
for help on using the changeset viewer.