Changeset 5944 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Aug 16, 2014, 10:26:39 AM (11 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppMain.cpp
r5921 r5944 94 94 ////////////////////////////////////////////////////////////////////////////// 95 95 void t_pppMain::stop() { 96 97 cout << "t_pppMain::stop" << endl; 96 98 97 99 if (!_running) { -
trunk/BNC/src/PPP/pppRun.cpp
r5942 r5944 60 60 //////////////////////////////////////////////////////////////////////////// 61 61 t_pppRun::t_pppRun(const t_pppOptions* opt) { 62 63 cout << "t_pppRun" << endl; 62 64 63 65 _opt = opt; … … 106 108 //////////////////////////////////////////////////////////////////////////// 107 109 t_pppRun::~t_pppRun() { 110 cout << "~t_pppRun" << endl; 108 111 } 109 112 … … 422 425 qApp->exit(0); 423 426 } 427 else { 428 BNC_CORE->stopPPP(); 429 } 424 430 } 425 431 -
trunk/BNC/src/PPP/pppThread.cpp
r5930 r5944 57 57 t_pppThread::t_pppThread(bool ownThread, const t_pppOptions* opt) : QThread(0) { 58 58 59 cout << "t_pppThread" << endl; 60 59 61 _ownThread = ownThread; 60 62 _opt = opt; … … 70 72 //////////////////////////////////////////////////////////////////////////// 71 73 t_pppThread::~t_pppThread() { 74 cout << "~t_pppThread" << endl; 72 75 delete _pppRun; 73 76 }
Note:
See TracChangeset
for help on using the changeset viewer.