Changeset 5723 in ntrip
- Timestamp:
- Jul 31, 2014, 2:02:46 PM (11 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/PPP/pppThread.cpp ¶
r5722 r5723 54 54 //////////////////////////////////////////////////////////////////////////// 55 55 t_pppThread::t_pppThread(const t_options* opt) : QThread(0) { 56 _opt = *opt; 56 57 } 57 58 … … 93 94 void t_pppThread::slotNewEphGPS(gpsephemeris gpseph) { 94 95 QMutexLocker locker(&_mutex); 96 cout << _opt._roverName << " slotNewEphGPS" << endl; 95 97 } 96 98 … … 99 101 void t_pppThread::slotNewEphGlonass(glonassephemeris gloeph) { 100 102 QMutexLocker locker(&_mutex); 103 cout << _opt._roverName << " slotNewEphGlonass" << endl; 101 104 } 102 105 … … 105 108 void t_pppThread::slotNewEphGalileo(galileoephemeris /* galeph */) { 106 109 QMutexLocker locker(&_mutex); 110 cout << _opt._roverName << " slotNewEphGalileo" << endl; 107 111 } 108 112 … … 111 115 void t_pppThread::slotNewCorrections(QList<QString> corrList) { 112 116 QMutexLocker locker(&_mutex); 117 cout << _opt._roverName << " slotNewEphCorrections" << endl; 113 118 } 114 119 // … … 116 121 void t_pppThread::slotNewObs(QByteArray staID, QList<t_obs> obsList) { 117 122 QMutexLocker locker(&_mutex); 123 cout << _opt._roverName << " slotNewEphObs" << endl; 118 124 } 119 125 -
TabularUnified trunk/BNC/src/PPP/pppThread.h ¶
r5721 r5723 26 26 27 27 private: 28 QMutex _mutex; 28 QMutex _mutex; 29 t_options _opt; 29 30 }; 30 31
Note:
See TracChangeset
for help on using the changeset viewer.