Changeset 7231 in ntrip for trunk/BNC/src/PPP_RTK/pppStation.cpp
- Timestamp:
- Aug 18, 2015, 4:13:05 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.