- Timestamp:
- Feb 13, 2018, 7:48:31 AM (7 years ago)
- Location:
- branches/BNC_2.12/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/bncfigureppp.h
r6730 r8280 43 43 44 44 private: 45 const static double _tRange = 300;45 constexpr static double _tRange = 300; 46 46 47 47 class pppPos { -
branches/BNC_2.12/src/bncwindow.cpp
r8172 r8280 2684 2684 QComboBox* system = new QComboBox(); 2685 2685 system->setEditable(false); 2686 system->addItems(QString(",IGS14,ETRF2000,NAD83,GDA 94,SIRGAS95,SIRGAS2000,DREF91,Custom").split(","));2686 system->addItems(QString(",IGS14,ETRF2000,NAD83,GDA2020,SIRGAS2000,DREF91,Custom").split(",")); 2687 2687 system->setFrame(false); 2688 2688 system->setCurrentIndex(system->findText(hlp[iCol])); -
branches/BNC_2.12/src/rinex/rnxnavfile.h
r8000 r8280 39 39 public: 40 40 enum e_inpOut {input, output}; 41 static const double defaultRnxNavVersion2 = 2.11;42 static const double defaultRnxNavVersion3 = 3.03;41 static constexpr double defaultRnxNavVersion2 = 2.11; 42 static constexpr double defaultRnxNavVersion3 = 3.03; 43 43 44 44 private: … … 52 52 QStringList _comments; 53 53 }; 54 54 55 55 public: 56 56 t_rnxNavFile(const QString& fileName, e_inpOut inpOut); … … 62 62 bool glonass() const {return _header._glonass;} 63 63 QStringList comments() const {return _header._comments;} 64 void setGlonass(bool glo) {_header._glonass = glo;} 64 void setGlonass(bool glo) {_header._glonass = glo;} 65 65 void writeHeader(const QMap<QString, QString>* txtMap = 0); 66 66 void writeEph(const t_eph* eph); -
branches/BNC_2.12/src/rinex/rnxobsfile.h
r7983 r8280 43 43 44 44 public: 45 static const double defaultRnxObsVersion2 = 2.11; 46 static const double defaultRnxObsVersion3 = 3.03; 47 static const QString defaultSystems; 45 static constexpr double defaultRnxObsVersion2 = 2.11; 46 static constexpr double defaultRnxObsVersion3 = 3.03; 48 47 49 48 t_rnxObsHeader();
Note:
See TracChangeset
for help on using the changeset viewer.