Changeset 5732 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Jul 31, 2014, 4:28:21 PM (11 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppThread.cpp
r5731 r5732 94 94 this, SLOT(slotNewEphGalileo(galileoephemeris))); 95 95 96 connect(BNC_CORE, SIGNAL(newCorrections(Q List<QString>)),97 this, SLOT(slotNewCorrections(Q List<QString>)));96 connect(BNC_CORE, SIGNAL(newCorrections(QStringList)), 97 this, SLOT(slotNewCorrections(QStringList))); 98 98 } 99 99 } … … 128 128 // 129 129 //////////////////////////////////////////////////////////////////////////// 130 void t_pppRun::slotNewCorrections(Q List<QString>corrList) {130 void t_pppRun::slotNewCorrections(QStringList corrList) { 131 131 QMutexLocker locker(&_mutex); 132 132 cout << _opt._roverName << " slotNewCorrections" << endl; -
trunk/BNC/src/PPP/pppThread.h
r5731 r5732 20 20 void slotNewEphGlonass(glonassephemeris gloeph); 21 21 void slotNewEphGalileo(galileoephemeris galeph); 22 void slotNewCorrections(Q List<QString>corrList);22 void slotNewCorrections(QStringList corrList); 23 23 void slotNewObs(QByteArray staID, QList<t_obs> obsList); 24 24
Note:
See TracChangeset
for help on using the changeset viewer.