Changeset 2024 in ntrip for trunk/BNC/bncpppthread.h


Ignore:
Timestamp:
Nov 25, 2009, 6:38:01 PM (14 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncpppthread.h

    r2022 r2024  
    3232#include "RTCM3/ephemeris.h"
    3333
    34 struct t_corr {
     34#define MAXPRN =
     35
     36class t_data {
     37 public:
     38  static const unsigned MAXOBS = 16;
     39  t_data() {numSat = 0;}
     40  ~t_data() {}
     41  int     GPSWeek;
     42  double  GPSWeeks;
     43  int     numSat; 
     44  QString prn[MAXOBS+1];
     45  double  C1[MAXOBS+1];
     46  double  C2[MAXOBS+1];
     47  double  P1[MAXOBS+1];
     48  double  P2[MAXOBS+1];
     49  double  L1[MAXOBS+1];
     50  double  L2[MAXOBS+1];
     51};
     52
     53class t_corr {
     54 public:
    3555  int    iod;
    3656  double dClk;
     
    6383
    6484 private:
     85  void processEpoch();
    6586  QByteArray             _staID;
    6687  bool                   _isToBeDeleted;
     
    6889  QMap<QString, t_eph*>  _eph;
    6990  QMap<QString, t_corr*> _corr;
     91  t_data*                _data;
    7092};
    7193
Note: See TracChangeset for help on using the changeset viewer.