Changeset 5262 in ntrip for trunk/BNC/src/rinex


Ignore:
Timestamp:
Jun 17, 2013, 4:36:10 PM (11 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/rinex
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/bncpostprocess.cpp

    r5240 r5262  
    5555// Constructor
    5656////////////////////////////////////////////////////////////////////////////
    57 t_postProcessing::t_postProcessing(QObject* parent) : QThread(parent) {
     57t_postProcessing::t_postProcessing(QObject* parent, int maxSpeed) : QThread(parent) {
     58
     59  _maxSpeed   = maxSpeed;
    5860  _opt        = new t_pppOpt();
    5961  _rnxObsFile = 0;
     
    246248  }
    247249}
     250
     251// 
     252////////////////////////////////////////////////////////////////////////////
     253void t_postProcessing::slotSetSpeed(int speed) {
     254  qDebug() << "speed" << speed;
     255}
  • trunk/BNC/src/rinex/bncpostprocess.h

    r5238 r5262  
    4343 
    4444 public:
    45   t_postProcessing(QObject* parent);
     45  t_postProcessing(QObject* parent, int maxSpeed = 0);
    4646  static void setObsFromRnx(const t_rnxObsFile* rnxObsFile,
    4747                            const t_rnxObsFile::t_rnxEpo* epo,
     
    5858 public slots:
    5959  void slotMessage(QByteArray msg, bool showOnScreen);
     60  void slotSetSpeed(int speed);
    6061
    6162 public:
     
    7273  QTextStream*  _outStream;
    7374  bool          _isToBeDeleted;
     75  int           _maxSpeed;
    7476};
    7577
Note: See TracChangeset for help on using the changeset viewer.