Changeset 3171 in ntrip for trunk/BNC/upload/bncrtnetdecoder.h


Ignore:
Timestamp:
Mar 29, 2011, 4:10:33 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/upload/bncrtnetdecoder.h

    r3167 r3171  
    2323// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
    2424
    25 #ifndef INC_BNCRTNETDECODER_H
    26 #define INC_BNCRTNETDECODER_H
     25#ifndef BNCRTNETDECODER_H
     26#define BNCRTNETDECODER_H
    2727
    2828#include <fstream>
     
    3333class bncRtnetDecoder: public GPSDecoder, public bncEphUser {
    3434 public:
    35   bncRtnetDecoder(const QString& fileName);
     35  bncRtnetDecoder();
    3636  ~bncRtnetDecoder();
    3737  virtual t_irc Decode(char* buffer, int bufLen, std::vector<std::string>& errmsg);
    3838 private:
    39   void reopen();
    40   QString        _fileName;
    41   std::ofstream* _out;
    42   QDate          _fileDate;
     39  void readEpochTime(const QString& line);
     40
     41  QString _buffer;
     42
     43  int    _GPSweek;
     44  double _GPSweeks;
     45  int    _year;
     46  int    _month;
     47  int    _day;
     48  int    _hour;
     49  int    _min;
     50  double _sec;
     51
     52  double _dx;
     53  double _dy;
     54  double _dz;
     55  double _dxr;
     56  double _dyr;
     57  double _dzr;
     58  double _ox;
     59  double _oy;
     60  double _oz;
     61  double _oxr;
     62  double _oyr;
     63  double _ozr;
     64  double _sc;
     65  double _scr;
     66  double _t0;
    4367};
    4468
Note: See TracChangeset for help on using the changeset viewer.