Changeset 5903 in ntrip
- Timestamp:
- Aug 9, 2014, 10:55:47 AM (11 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppThread.cpp
r5901 r5903 68 68 //////////////////////////////////////////////////////////////////////////// 69 69 t_pppThread::~t_pppThread() { 70 cout << "~t_pppThread" << endl; 70 71 delete _pppRun; 71 72 } -
trunk/BNC/src/bnccore.cpp
r5902 r5903 879 879 //////////////////////////////////////////////////////////////////////////// 880 880 void t_bncCore::stopPPP() { 881 emit quitPPP();882 } 881 _pppMain->stop(); 882 } -
trunk/BNC/src/bnccore.h
r5901 r5903 92 92 void providerIDChanged(QString); 93 93 void newPosition(bncTime time, QVector<double> xx); 94 void quitPPP();95 94 96 95 private slots: -
trunk/BNC/src/bncgetthread.cpp
r5900 r5903 410 410 _staID = _rawFile->staID(); 411 411 412 QCoreApplication::processEvents(); 413 412 414 if (data.isEmpty()) { 413 415 cout << "no more data" << endl; 414 416 BNC_CORE->stopCombination(); 415 417 BNC_CORE->stopPPP(); 416 emit finished(); 417 this->deleteLater(); 418 return; 418 ::exit(0); 419 419 } 420 420 }
Note:
See TracChangeset
for help on using the changeset viewer.