Changeset 6466 in ntrip


Ignore:
Timestamp:
Dec 27, 2014, 6:14:17 PM (9 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/satObs.cpp

    r6465 r6466  
    77using namespace std;
    88
    9 //
     9// Constructor
    1010////////////////////////////////////////////////////////////////////////////
    11 void t_clkCorr::reset() {
    12   _prn.set(' ', 0);
    13   _time.reset();
     11t_clkCorr::t_clkCorr() {
    1412  _iod        = 0;
    1513  _dClk       = 0.0;
     
    4745}
    4846
    49 //
     47// Constructor
    5048////////////////////////////////////////////////////////////////////////////
    51 void t_orbCorr::reset() {
    52   _prn.set(' ', 0);
    53   _time.reset();
     49t_orbCorr::t_orbCorr() {
     50  _iod    = 0;
     51  _system = 'R';
    5452  _xr.ReSize(3);    _xr    = 0.0;
    5553  _dotXr.ReSize(3); _dotXr = 0.0;
    56   _iod    = 0;
    57   _system = 'R';
    5854}
    5955
  • trunk/BNC/src/satObs.h

    r6465 r6466  
    6161class t_orbCorr {
    6262 public:
    63   t_orbCorr() {reset();}
     63  t_orbCorr();
    6464  static void writeEpoch(std::ostream* out, const QList<t_orbCorr>& corrList);
    6565  static void readEpoch(const QStringList& lines, QList<t_orbCorr>& corrList);
    66   void reset();
    6766  std::string    _staID;
    6867  t_prn          _prn;
     
    7675class t_clkCorr {
    7776 public:
    78   t_clkCorr() {reset();}
     77  t_clkCorr();
    7978  static void writeEpoch(std::ostream* out, const QList<t_clkCorr>& corrList);
    8079  static void readEpoch(const QStringList& lines, QList<t_clkCorr>& corrList);
    81   void reset();
    8280  std::string    _staID;
    8381  t_prn          _prn;
Note: See TracChangeset for help on using the changeset viewer.