Changeset 4266 in ntrip for trunk/BNC/rinex/reqcanalyze.h


Ignore:
Timestamp:
Jun 22, 2012, 11:58:03 AM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/rinex/reqcanalyze.h

    r4263 r4266  
    5050 
    5151 private:
     52  class t_anaObs {
     53   public:
     54    t_anaObs(const t_obs& obsIn) {
     55      obs = obsIn;
     56      M1  = 0.0;
     57      M2  = 0.0;
     58    }
     59    t_obs  obs;
     60    double M1;
     61    double M2;
     62  };
     63
    5264  class t_satStat {
    5365   public:
     
    6173    }
    6274    void addObs(const t_obs& obs);
    63     t_obs* currObs;
    64     t_obs* prevObs;
     75    t_anaObs* currObs;
     76    t_anaObs* prevObs;
    6577  };
    6678
     
    7587  QVector<t_eph*>          _ephs;
    7688  QMap<QString, t_satStat> _satStat;
     89  t_rnxObsFile::t_rnxEpo*  _currEpo;
    7790};
    7891
Note: See TracChangeset for help on using the changeset viewer.