Changeset 5721 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Jul 31, 2014, 1:35:31 PM (11 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppMain.cpp
r5719 r5721 71 71 while (it.hasNext()) { 72 72 QSharedPointer<t_options> opt = it.next(); 73 t_pppThread* pppThread = new t_pppThread(opt); 73 t_pppThread* pppThread = new t_pppThread(opt.data()); 74 74 _running = true; 75 75 } -
trunk/BNC/src/PPP/pppThread.cpp
r5720 r5721 53 53 // Constructor 54 54 //////////////////////////////////////////////////////////////////////////// 55 t_pppThread::t_pppThread( QWeakPointer<t_options>opt) : QThread(0) {55 t_pppThread::t_pppThread(const t_options* opt) : QThread(0) { 56 56 } 57 57 -
trunk/BNC/src/PPP/pppThread.h
r5720 r5721 14 14 15 15 public: 16 t_pppThread( QWeakPointer<t_options>opt);16 t_pppThread(const t_options* opt); 17 17 ~t_pppThread(); 18 18 virtual void run();
Note:
See TracChangeset
for help on using the changeset viewer.