- Timestamp:
- Apr 22, 2012, 12:16:59 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/rinex/rnxnavfile.h
r4004 r4008 45 45 t_rnxNavHeader(); 46 46 ~t_rnxNavHeader(); 47 t_irc read(QTextStream* stream); 48 float version() const {return _version;} 49 bool glonass() const {return _glonass;} 50 private: 51 float _version; 52 bool _glonass; 47 t_irc read(QTextStream* stream); 48 double _version; 49 bool _glonass; 53 50 }; 54 51 … … 58 55 t_eph* getNextEph(const bncTime& tt, const QMap<QString, int>* corrIODs); 59 56 const std::vector<t_eph*> ephs() const {return _ephs;} 60 float version() const {return _header.version();} 61 bool glonass() const {return _header.glonass();} 62 void writeHeader(); 63 void writeEph(const t_eph* eph); 57 double version() const {return _header._version;} 58 void setVersion(double version) {_header._version = version;} 59 bool glonass() const {return _header._glonass;} 60 void writeHeader(); 61 void writeEph(const t_eph* eph); 64 62 65 63 protected:
Note:
See TracChangeset
for help on using the changeset viewer.