Changeset 6433 in ntrip for trunk/BNC/src
- Timestamp:
- Dec 25, 2014, 6:19:17 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/pppRun.cpp
r6432 r6433 88 88 this, SLOT(slotNewObs(QByteArray, QList<t_satObs>)),conType); 89 89 90 connect(BNC_CORE, SIGNAL(new EphGPS(t_ephGPS)),91 this, SLOT(slotNew EphGPS(t_ephGPS)),conType);90 connect(BNC_CORE, SIGNAL(newGPSEph(t_ephGPS)), 91 this, SLOT(slotNewGPSEph(t_ephGPS)),conType); 92 92 93 connect(BNC_CORE, SIGNAL(new EphGlonass(t_ephGlo)),94 this, SLOT(slotNew EphGlonass(t_ephGlo)),conType);93 connect(BNC_CORE, SIGNAL(newGlonassEph(t_ephGlo)), 94 this, SLOT(slotNewGlonassEph(t_ephGlo)),conType); 95 95 96 connect(BNC_CORE, SIGNAL(new EphGalileo(t_ephGal)),97 this, SLOT(slotNew EphGalileo(t_ephGal)),conType);96 connect(BNC_CORE, SIGNAL(newGalileoEph(t_ephGal)), 97 this, SLOT(slotNewGalileoEph(t_ephGal)),conType); 98 98 99 99 connect(BNC_CORE, SIGNAL(newOrbCorrections(QList<t_orbCorr>)), … … 157 157 // 158 158 //////////////////////////////////////////////////////////////////////////// 159 void t_pppRun::slotNew EphGPS(t_ephGPS eph) {159 void t_pppRun::slotNewGPSEph(t_ephGPS eph) { 160 160 QMutexLocker locker(&_mutex); 161 161 _pppClient->putEphemeris(&eph); … … 164 164 // 165 165 //////////////////////////////////////////////////////////////////////////// 166 void t_pppRun::slotNew EphGlonass(t_ephGlo eph) {166 void t_pppRun::slotNewGlonassEph(t_ephGlo eph) { 167 167 QMutexLocker locker(&_mutex); 168 168 _pppClient->putEphemeris(&eph); … … 171 171 // 172 172 //////////////////////////////////////////////////////////////////////////// 173 void t_pppRun::slotNew EphGalileo(t_ephGal eph) {173 void t_pppRun::slotNewGalileoEph(t_ephGal eph) { 174 174 QMutexLocker locker(&_mutex); 175 175 _pppClient->putEphemeris(&eph); -
trunk/BNC/src/pppRun.h
r6432 r6433 35 35 36 36 public slots: 37 void slotNew EphGPS(t_ephGPS);38 void slotNew EphGlonass(t_ephGlo);39 void slotNew EphGalileo(t_ephGal);37 void slotNewGPSEph(t_ephGPS); 38 void slotNewGlonassEph(t_ephGlo); 39 void slotNewGalileoEph(t_ephGal); 40 40 void slotNewOrbCorrections(QList<t_orbCorr> orbCorr); 41 41 void slotNewClkCorrections(QList<t_clkCorr> clkCorr);
Note:
See TracChangeset
for help on using the changeset viewer.