Index: /trunk/BNC/src/rinex/bncpostprocess.cpp
===================================================================
--- /trunk/BNC/src/rinex/bncpostprocess.cpp	(revision 5261)
+++ /trunk/BNC/src/rinex/bncpostprocess.cpp	(revision 5262)
@@ -55,5 +55,7 @@
 // Constructor
 ////////////////////////////////////////////////////////////////////////////
-t_postProcessing::t_postProcessing(QObject* parent) : QThread(parent) {
+t_postProcessing::t_postProcessing(QObject* parent, int maxSpeed) : QThread(parent) {
+
+  _maxSpeed   = maxSpeed;
   _opt        = new t_pppOpt();
   _rnxObsFile = 0;
@@ -246,2 +248,8 @@
   }
 }
+
+//  
+////////////////////////////////////////////////////////////////////////////
+void t_postProcessing::slotSetSpeed(int speed) {
+  qDebug() << "speed" << speed;
+}
Index: /trunk/BNC/src/rinex/bncpostprocess.h
===================================================================
--- /trunk/BNC/src/rinex/bncpostprocess.h	(revision 5261)
+++ /trunk/BNC/src/rinex/bncpostprocess.h	(revision 5262)
@@ -43,5 +43,5 @@
  
  public:
-  t_postProcessing(QObject* parent);
+  t_postProcessing(QObject* parent, int maxSpeed = 0);
   static void setObsFromRnx(const t_rnxObsFile* rnxObsFile,
                             const t_rnxObsFile::t_rnxEpo* epo, 
@@ -58,4 +58,5 @@
  public slots:
   void slotMessage(QByteArray msg, bool showOnScreen);
+  void slotSetSpeed(int speed);
 
  public:
@@ -72,4 +73,5 @@
   QTextStream*  _outStream;
   bool          _isToBeDeleted;
+  int           _maxSpeed;
 };
 
