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


Ignore:
Timestamp:
Aug 4, 2014, 4:22:50 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r5775 r5791  
    22#define PPPTHREAD_H
    33
     4#include <deque>
    45#include <vector>
    56#include <QtCore>
     
    1011
    1112namespace BNC {
     13
     14class t_pppEpoData {
     15 public:
     16  t_pppEpoData() {}
     17  ~t_pppEpoData() {
     18    for (unsigned ii = 0; ii < _pppSatObs.size(); ii++) {
     19      delete _pppSatObs[ii];
     20    }
     21  }
     22  bncTime                   _time;
     23  std::vector<t_pppSatObs*> _pppSatObs;
     24};
    1225
    1326class t_pppRun : public QObject {
     
    2841
    2942 private:
    30   QMutex           _mutex;
    31   const t_options* _opt;
    32   t_pppClient*     _pppClient;
     43  QMutex                    _mutex;
     44  const t_options*          _opt;
     45  t_pppClient*              _pppClient;
     46  std::deque<t_pppEpoData*> _pppEpochs;
    3347};
    3448
Note: See TracChangeset for help on using the changeset viewer.