- Timestamp:
- Jan 21, 2009, 12:36:16 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnc.pro
r1506 r1523 2 2 # Switch to debug configuration 3 3 # ----------------------------- 4 CONFIG -= debug5 CONFIG += release4 CONFIG += debug 5 CONFIG -= release 6 6 7 7 DEFINES += NO_RTCM3_MAIN -
trunk/BNC/bnccaster.cpp
r1450 r1523 117 117 while(it.hasNext()){ 118 118 bncGetThread* thread = it.next(); 119 thread->terminate();120 delete thread;119 //// thread->quit(); 120 thread->deleteLater(); 121 121 } 122 122 delete _out; -
trunk/BNC/bncrinex.cpp
r1495 r1523 711 711 _out.close(); 712 712 if (!_rnxScriptName.isEmpty()) { 713 msleep(1);713 qApp->thread()->wait(100); 714 714 #ifdef WIN32 715 715 QProcess::startDetached(_rnxScriptName, QStringList() << _fName) ; -
trunk/BNC/bncrinex.h
r1387 r1523 36 36 #include "RTCM/GPSDecoder.h" 37 37 38 class bncRinex : public QThread{38 class bncRinex { 39 39 public: 40 40 bncRinex(const QByteArray& statID, const QUrl& mountPoint, … … 54 54 _approxPos[2] = staz; 55 55 } 56 57 protected:58 virtual void run() {};59 56 60 57 private:
Note:
See TracChangeset
for help on using the changeset viewer.