- Timestamp:
- Jun 17, 2013, 4:36:10 PM (11 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/bncpostprocess.cpp
r5240 r5262 55 55 // Constructor 56 56 //////////////////////////////////////////////////////////////////////////// 57 t_postProcessing::t_postProcessing(QObject* parent) : QThread(parent) { 57 t_postProcessing::t_postProcessing(QObject* parent, int maxSpeed) : QThread(parent) { 58 59 _maxSpeed = maxSpeed; 58 60 _opt = new t_pppOpt(); 59 61 _rnxObsFile = 0; … … 246 248 } 247 249 } 250 251 // 252 //////////////////////////////////////////////////////////////////////////// 253 void t_postProcessing::slotSetSpeed(int speed) { 254 qDebug() << "speed" << speed; 255 } -
trunk/BNC/src/rinex/bncpostprocess.h
r5238 r5262 43 43 44 44 public: 45 t_postProcessing(QObject* parent );45 t_postProcessing(QObject* parent, int maxSpeed = 0); 46 46 static void setObsFromRnx(const t_rnxObsFile* rnxObsFile, 47 47 const t_rnxObsFile::t_rnxEpo* epo, … … 58 58 public slots: 59 59 void slotMessage(QByteArray msg, bool showOnScreen); 60 void slotSetSpeed(int speed); 60 61 61 62 public: … … 72 73 QTextStream* _outStream; 73 74 bool _isToBeDeleted; 75 int _maxSpeed; 74 76 }; 75 77
Note:
See TracChangeset
for help on using the changeset viewer.