Changeset 4005 in ntrip
- Timestamp:
- Apr 22, 2012, 11:53:27 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/ephemeris.h
r4002 r4005 12 12 class t_eph { 13 13 public: 14 15 enum e_type {unknown, GPS, GLONASS, Galileo}; 14 16 15 17 static bool earlierTime(const t_eph* eph1, const t_eph* eph2) { … … 28 30 virtual ~t_eph() {}; 29 31 32 virtual e_type type() const = 0; 33 30 34 bool ok() const {return _ok;} 31 35 bool isNewerThan(const t_eph* eph) const; … … 73 77 t_ephGPS(float rnxVersion, const QStringList& lines); 74 78 virtual ~t_ephGPS() {} 79 80 virtual e_type type() const {return t_eph::GPS;} 81 75 82 double TOC() const {return _TOC;} 76 83 … … 125 132 126 133 virtual ~t_ephGlo() {} 134 135 virtual e_type type() const {return t_eph::GLONASS;} 127 136 128 137 virtual void position(int GPSweek, double GPSweeks, … … 168 177 t_ephGal(float rnxVersion, const QStringList& lines); 169 178 virtual ~t_ephGal() {} 179 180 virtual e_type type() const {return t_eph::Galileo;} 181 170 182 double TOC() const {return _TOC;} 171 183
Note:
See TracChangeset
for help on using the changeset viewer.