Changeset 4403 in ntrip for trunk/BNC/src/RTCM/GPSDecoder.h


Ignore:
Timestamp:
Jul 8, 2012, 11:35:48 AM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM/GPSDecoder.h

    r4393 r4403  
    5050    _dataflags  = 0;
    5151    _dataflags2 = 0;
    52     for (int iEntry = 0; iEntry < GNSSENTRY_NUMBER; iEntry++) {
    53       _measdata[iEntry] = 0.0;
    54       _codetype[iEntry] = 0;
     52    for (int ie = 0; ie < GNSSENTRY_NUMBER; ie++) {
     53      _measdata[ie] = 0.0;
     54      _codetype[ie] = 0;
    5555    }
    5656    slip_cnt_L1 = -1;
     
    6161  ~t_obs() {}
    6262
    63   double measdata(const QString& rnxStr, int* iEntry = 0) const;
    64   void   setMeasdata(const QString& rnxStr, double value);
     63  double measdata(const QString& rnxStr, float rnxVer) const;
     64  void   setMeasdata(const QString& rnxStr, float rnxVer, double value);
    6565
    6666  char   StatID[20+1]; // Station ID
     
    7979  unsigned int       _dataflags2;                  // GNSSDF2_xxx */
    8080  const char*        _codetype[GNSSENTRY_NUMBER];
     81
     82 private:
     83  int iEntry(const QString& rnxStr, float rnxVer) const;
    8184};
    8285
Note: See TracChangeset for help on using the changeset viewer.