Changeset 6966 in ntrip for trunk/BNC/src
- Timestamp:
- Jun 25, 2015, 11:12:30 AM (9 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/pppRun.cpp
r6825 r6966 98 98 this, SLOT(slotNewGalileoEph(t_ephGal)),conType); 99 99 100 connect(BNC_CORE, SIGNAL(newBDSEph(t_ephBDS)), 101 this, SLOT(slotNewBDSEph(t_ephBDS)),conType); 102 100 103 connect(BNC_CORE, SIGNAL(newOrbCorrections(QList<t_orbCorr>)), 101 104 this, SLOT(slotNewOrbCorrections(QList<t_orbCorr>)),conType); … … 194 197 //////////////////////////////////////////////////////////////////////////// 195 198 void t_pppRun::slotNewGalileoEph(t_ephGal eph) { 199 QMutexLocker locker(&_mutex); 200 _pppClient->putEphemeris(&eph); 201 } 202 203 // 204 //////////////////////////////////////////////////////////////////////////// 205 void t_pppRun::slotNewBDSEph(t_ephBDS eph) { 196 206 QMutexLocker locker(&_mutex); 197 207 _pppClient->putEphemeris(&eph); -
trunk/BNC/src/pppRun.h
r6653 r6966 39 39 void slotNewGlonassEph(t_ephGlo); 40 40 void slotNewGalileoEph(t_ephGal); 41 void slotNewBDSEph(t_ephBDS); 41 42 void slotNewOrbCorrections(QList<t_orbCorr> orbCorr); 42 43 void slotNewClkCorrections(QList<t_clkCorr> clkCorr);
Note:
See TracChangeset
for help on using the changeset viewer.