Changeset 10587 in ntrip for trunk/BNC/src/rinex/rnxnavfile.h
- Timestamp:
- Dec 10, 2024, 3:57:21 PM (4 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/rnxnavfile.h
r10127 r10587 38 38 #define defaultRnxNavVersion2 2.11 39 39 #define defaultRnxNavVersion3 3.05 40 #define defaultRnxNavVersion4 4.0 140 #define defaultRnxNavVersion4 4.02 41 41 42 42 class t_rnxNavFile { … … 52 52 double _version; 53 53 bool _glonass; 54 t_eph::e_ type_satSys;55 QStringList _comments;56 QStringList _runByDate;54 t_eph::e_system _satSys; 55 QStringList _comments; 56 QStringList _runByDate; 57 57 }; 58 58 … … 67 67 QStringList comments() const {return _header._comments;} 68 68 QStringList runByDate() const {return _header._runByDate;} 69 t_eph::e_ typesatSystem() const {return _header._satSys;}69 t_eph::e_system satSystem() const {return _header._satSys;} 70 70 void setGlonass(bool glo) {_header._glonass = glo;} 71 void setGnssTypeV3(t_eph::e_ type sys) {_header._satSys = sys;}71 void setGnssTypeV3(t_eph::e_system system) {_header._satSys = system;} 72 72 void writeHeader(const QMap<QString, QString>* txtMap = 0, int numMergedFiles = 0, int leapSecs = 0); 73 73 void writeEph(const t_eph* eph);
Note:
See TracChangeset
for help on using the changeset viewer.