Changeset 7231 in ntrip for trunk/BNC/src/PPP_RTK
- Timestamp:
- Aug 18, 2015, 4:13:05 PM (11 years ago)
- Location:
- trunk/BNC/src/PPP_RTK
- Files:
-
- 4 edited
-
pppClient.cpp (modified) (2 diffs)
-
pppClient.h (modified) (1 diff)
-
pppStation.cpp (modified) (3 diffs)
-
pppStation.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP_RTK/pppClient.cpp
r7227 r7231 98 98 } 99 99 100 // 101 ////////////////////////////////////////////////////////////////////////////// 102 void t_pppClient::putTec(const t_vTec* vTec) { 103 _staRover->putTec(new t_vTec(*vTec)); 104 } 105 100 106 // 101 107 ////////////////////////////////////////////////////////////////////////////// … … 122 128 } 123 129 124 // 130 // 125 131 ////////////////////////////////////////////////////////////////////////////// 126 132 t_irc t_pppClient::prepareObs(const vector<t_satObs*>& satObs, -
trunk/BNC/src/PPP_RTK/pppClient.h
r7227 r7231 26 26 27 27 void putEphemeris(const t_eph* eph); 28 void putTec(const t_vTec* vTec); 28 29 void putOrbCorrections(const std::vector<t_orbCorr*>& corr); 29 30 void putClkCorrections(const std::vector<t_clkCorr*>& corr); -
trunk/BNC/src/PPP_RTK/pppStation.cpp
r7227 r7231 26 26 t_pppStation::t_pppStation() { 27 27 _windUp = new t_windUp(); 28 _vTec = 0; 28 29 } 29 30 … … 32 33 t_pppStation::~t_pppStation() { 33 34 delete _windUp; 35 delete _vTec; 34 36 } 35 37 … … 57 59 } 58 60 61 // 62 ////////////////////////////////////////////////////////////////////////////// 63 void t_pppStation::putTec(t_vTec* vTec) { 64 delete _vTec; 65 _vTec = vTec; 66 } 67 -
trunk/BNC/src/PPP_RTK/pppStation.h
r7227 r7231 30 30 double dClk() const {return _dClk;} 31 31 double windUp(const bncTime& time, t_prn prn, const ColumnVector& rSat) const; 32 void putTec(t_vTec* vTec); 33 const t_vTec* vTec() const { 34 return _vTec; 35 } 32 36 33 37 private: … … 43 47 bncTime _timeCheck; 44 48 ColumnVector _xyzCheck; 49 t_vTec* _vTec; 45 50 }; 46 51
Note:
See TracChangeset
for help on using the changeset viewer.
