Changeset 5719 in ntrip for trunk/BNC/src/PPP/pppThread.h


Ignore:
Timestamp:
Jul 31, 2014, 1:29:23 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppThread.h

    r5681 r5719  
    33
    44#include <vector>
     5#include <QtCore>
    56
    67#include "RTCM/GPSDecoder.h"
    7 #include "bncephuser.h"
     8#include "options.h"
     9
     10namespace BNC {
    811
    912class t_pppThread : public QThread {
     
    1114
    1215 public:
    13   t_pppThread();
     16  t_pppThread(QSharedPointer<t_options> opt);
    1417  ~t_pppThread();
    1518  virtual void run();
     
    2326
    2427 private:
    25   class t_epoData {
    26    public:
    27     bncTime            _time;
    28     std::vector<t_obs> _obsRover;
    29   };
    30   void processFrontEpoch();
    31   QMutex                  _mutex;
    32   QByteArray              _roverMount;
    33   QByteArray              _corrMount;
    34   std::vector<t_epoData*> _epochs;
     28  QMutex _mutex;
    3529};
    3630
     31}
     32
    3733#endif
Note: See TracChangeset for help on using the changeset viewer.