Changeset 5729 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Jul 31, 2014, 3:18:23 PM (11 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppMain.cpp
r5725 r5729 83 83 if (!_running) { 84 84 return; 85 } 86 QListIterator<t_pppThread*> it(_pppThreads); 87 while (it.hasNext()) { 88 t_pppThread* pppThread = it.next(); 89 pppThread->exit(); 85 90 } 86 91 _running = false; -
trunk/BNC/src/PPP/pppThread.cpp
r5727 r5729 66 66 void t_pppThread::run() { 67 67 68 cout << _opt._roverName << " run" << endl; 69 68 70 // Connect to BNC Signals 69 71 // ---------------------- 70 72 if (BNC_CORE->caster()) { 71 connect(BNC_CORE->caster() .data(), SIGNAL(newObs(QByteArray, QList<t_obs>)),72 this,SLOT(slotNewObs(QByteArray, QList<t_obs>)));73 connect(BNC_CORE->caster(), SIGNAL(newObs(QByteArray, QList<t_obs>)), 74 this, SLOT(slotNewObs(QByteArray, QList<t_obs>))); 73 75 74 76 connect(BNC_CORE, SIGNAL(newEphGPS(gpsephemeris)), … … 88 90 // --------------------- 89 91 QThread::exec(); 92 93 cout << _opt._roverName << " exit" << endl; 90 94 } 91 95
Note:
See TracChangeset
for help on using the changeset viewer.