Changeset 6466 in ntrip
- Timestamp:
- Dec 27, 2014, 6:14:17 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/satObs.cpp
r6465 r6466 7 7 using namespace std; 8 8 9 // 9 // Constructor 10 10 //////////////////////////////////////////////////////////////////////////// 11 void t_clkCorr::reset() { 12 _prn.set(' ', 0); 13 _time.reset(); 11 t_clkCorr::t_clkCorr() { 14 12 _iod = 0; 15 13 _dClk = 0.0; … … 47 45 } 48 46 49 // 47 // Constructor 50 48 //////////////////////////////////////////////////////////////////////////// 51 void t_orbCorr::reset() {52 _ prn.set(' ', 0);53 _ time.reset();49 t_orbCorr::t_orbCorr() { 50 _iod = 0; 51 _system = 'R'; 54 52 _xr.ReSize(3); _xr = 0.0; 55 53 _dotXr.ReSize(3); _dotXr = 0.0; 56 _iod = 0;57 _system = 'R';58 54 } 59 55 -
trunk/BNC/src/satObs.h
r6465 r6466 61 61 class t_orbCorr { 62 62 public: 63 t_orbCorr() {reset();}63 t_orbCorr(); 64 64 static void writeEpoch(std::ostream* out, const QList<t_orbCorr>& corrList); 65 65 static void readEpoch(const QStringList& lines, QList<t_orbCorr>& corrList); 66 void reset();67 66 std::string _staID; 68 67 t_prn _prn; … … 76 75 class t_clkCorr { 77 76 public: 78 t_clkCorr() {reset();}77 t_clkCorr(); 79 78 static void writeEpoch(std::ostream* out, const QList<t_clkCorr>& corrList); 80 79 static void readEpoch(const QStringList& lines, QList<t_clkCorr>& corrList); 81 void reset();82 80 std::string _staID; 83 81 t_prn _prn;
Note:
See TracChangeset
for help on using the changeset viewer.