Changeset 5900 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Aug 9, 2014, 10:00:20 AM (11 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppMain.cpp
r5898 r5900 57 57 ////////////////////////////////////////////////////////////////////////////// 58 58 t_pppMain::~t_pppMain() { 59 s lotStop();59 stop(); 60 60 } 61 61 … … 81 81 catch (t_except exc) { 82 82 _running = true; 83 s lotStop();83 stop(); 84 84 } 85 85 } … … 87 87 // 88 88 ////////////////////////////////////////////////////////////////////////////// 89 void t_pppMain::slotStop() { 90 91 cout << "t_pppMain::slotStop" << endl; 89 void t_pppMain::stop() { 92 90 93 91 if (!_running) { -
trunk/BNC/src/PPP/pppMain.h
r5870 r5900 8 8 namespace BNC_PPP { 9 9 10 class t_pppMain : public QObject { 11 Q_OBJECT 10 class t_pppMain { 12 11 public: 13 12 t_pppMain(); 14 13 ~t_pppMain(); 15 14 void start(); 16 public slots: 17 void slotStop(); 15 void stop(); 18 16 19 17 private:
Note:
See TracChangeset
for help on using the changeset viewer.