Changeset 8280 in ntrip for branches/BNC_2.12/src


Ignore:
Timestamp:
Feb 13, 2018, 7:48:31 AM (6 years ago)
Author:
stuerze
Message:

minor changes

Location:
branches/BNC_2.12/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/bncfigureppp.h

    r6730 r8280  
    4343
    4444 private:
    45   const static double _tRange = 300;
     45  constexpr static double _tRange = 300;
    4646
    4747  class pppPos {
  • branches/BNC_2.12/src/bncwindow.cpp

    r8172 r8280  
    26842684        QComboBox* system = new QComboBox();
    26852685        system->setEditable(false);
    2686         system->addItems(QString(",IGS14,ETRF2000,NAD83,GDA94,SIRGAS95,SIRGAS2000,DREF91,Custom").split(","));
     2686        system->addItems(QString(",IGS14,ETRF2000,NAD83,GDA2020,SIRGAS2000,DREF91,Custom").split(","));
    26872687        system->setFrame(false);
    26882688        system->setCurrentIndex(system->findText(hlp[iCol]));
  • branches/BNC_2.12/src/rinex/rnxnavfile.h

    r8000 r8280  
    3939 public:
    4040  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;
    4343
    4444 private:
     
    5252    QStringList _comments;
    5353  };
    54  
     54
    5555 public:
    5656  t_rnxNavFile(const QString& fileName, e_inpOut inpOut);
     
    6262  bool   glonass() const {return _header._glonass;}
    6363  QStringList comments() const {return _header._comments;}
    64   void   setGlonass(bool glo) {_header._glonass = glo;} 
     64  void   setGlonass(bool glo) {_header._glonass = glo;}
    6565  void   writeHeader(const QMap<QString, QString>* txtMap = 0);
    6666  void   writeEph(const t_eph* eph);
  • branches/BNC_2.12/src/rinex/rnxobsfile.h

    r7983 r8280  
    4343
    4444 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;
    4847
    4948  t_rnxObsHeader();
Note: See TracChangeset for help on using the changeset viewer.