Changeset 4008 in ntrip


Ignore:
Timestamp:
Apr 22, 2012, 12:16:59 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/rinex/rnxnavfile.h

    r4004 r4008  
    4545    t_rnxNavHeader();
    4646    ~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;
    5350  };
    5451 
     
    5855  t_eph* getNextEph(const bncTime& tt, const QMap<QString, int>* corrIODs);
    5956  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);
    6462
    6563 protected:
Note: See TracChangeset for help on using the changeset viewer.