Changeset 7240 in ntrip for trunk/BNC/src
- Timestamp:
- Aug 20, 2015, 9:07:53 AM (9 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/pppModel.cpp
r6268 r7240 384 384 } 385 385 386 // Constructor 387 /////////////////////////////////////////////////////////////////////////// 388 t_iono::t_iono() { 389 _vTec = 0; 390 } 391 392 t_iono::~t_iono() { 393 delete _vTec; 394 } 395 396 void t_iono::setTecData(const t_vTec* vTec) { 397 delete _vTec; 398 _vTec = new t_vTec(*vTec); 399 } 400 401 double t_iono::vtec() { 402 403 return 0.0; 404 } -
trunk/BNC/src/pppModel.h
r6400 r7240 6 6 #include "bnctime.h" 7 7 #include "t_prn.h" 8 #include "satObs.h" 8 9 9 10 namespace BNC_PPP { … … 58 59 }; 59 60 61 class t_iono { 62 public: 63 t_iono(); 64 ~t_iono(); 65 void setTecData(const t_vTec* vTec); 66 double vtec(); 67 private: 68 t_vTec* _vTec; 69 int _layer; 70 double _layerHeight; 71 double _roverHeight; 72 73 74 }; 75 60 76 } 61 77
Note:
See TracChangeset
for help on using the changeset viewer.