Changeset 7972 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Jun 29, 2016, 3:04:13 PM (9 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r7927 r7972 63 63 _antex = 0; 64 64 } 65 65 /* 66 if (!_opt->_blqFileName.empty()) { 67 _loading = new t_loading(_opt->_blqFileName.c_str()); 68 } 69 else { 70 _loading = 0; 71 } 72 */ 66 73 CLIENTS.setLocalData(this); // CLIENTS takes ownership over "this" 67 74 } … … 80 87 delete _filter; 81 88 delete _tides; 89 /* 90 if (_loading) { 91 delete _loading; 92 } 93 */ 82 94 clearObs(); 83 95 } … … 565 577 } 566 578 579 // 580 ////////////////////////////////////////////////////////////////////////////// 581 void t_pppClient::reset() { 582 583 // to delete all parameters 584 delete _filter; 585 _filter = new t_pppFilter(); 586 587 // to delete old orbit and clock corrections 588 delete _ephPool; 589 _ephPool = new t_pppEphPool(); 590 591 // to delete old code biases 592 delete _obsPool; 593 _obsPool = new t_pppObsPool(); 594 } -
trunk/BNC/src/PPP/pppClient.h
r7288 r7972 45 45 static t_pppClient* instance(); 46 46 47 void reset(); 48 47 49 private: 48 50 void initOutput(t_output* output); … … 69 71 t_pppOptions* _opt; 70 72 t_tides* _tides; 73 // t_loading* _loading; 71 74 }; 72 75
Note:
See TracChangeset
for help on using the changeset viewer.