Changeset 3659 in ntrip for trunk/BNC/RTCM3/ephemeris.h


Ignore:
Timestamp:
Feb 3, 2012, 5:34:05 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM3/ephemeris.h

    r3255 r3659  
    1212class t_eph {
    1313 public:
     14  t_eph() {_ok = false;}
    1415  virtual ~t_eph() {};
    1516
     17  bool     ok() const {return _ok;}
    1618  bool     isNewerThan(const t_eph* eph) const;
    1719  QString  prn() const {return _prn;}
     
    4951  double    _GPSweeks;
    5052  QDateTime _receptDateTime;
     53  bool      _ok;
    5154};
    5255
     
    5558 public:
    5659  t_ephGPS() { }
     60  t_ephGPS(float rnxVersion, const QStringList& lines);
    5761  virtual ~t_ephGPS() {}
    5862  double TOC() const {return _TOC;}
     
    105109 public:
    106110  t_ephGlo() { _xv.ReSize(6); }
     111  t_ephGlo(float rnxVersion, const QStringList& lines);
    107112
    108113  virtual ~t_ephGlo() {}
     
    146151 public:
    147152  t_ephGal() { }
     153  t_ephGal(float rnxVersion, const QStringList& lines);
    148154  virtual ~t_ephGal() {}
    149155  double TOC() const {return _TOC;}
Note: See TracChangeset for help on using the changeset viewer.