Changeset 7972 in ntrip
- Timestamp:
- Jun 29, 2016, 3:04:13 PM (8 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 6 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 -
trunk/BNC/src/PPP_SSR_I/pppClient.cpp
r7929 r7972 428 428 return failure; 429 429 } 430 431 // 432 //////////////////////////////////////////////////////////////////////////// 433 void t_pppClient::reset() { 434 435 // to delete all parameters 436 delete _filter; 437 _filter = new t_pppFilter(this); 438 439 // to delete old orbit and clock corrections 440 delete _ephUser; 441 _ephUser = new bncEphUser(false); 442 443 // to delete old code biases 444 delete _pppUtils; 445 _pppUtils = new t_pppUtils(); 446 447 } -
trunk/BNC/src/PPP_SSR_I/pppClient.h
r7609 r7972 52 52 std::ostringstream& log() {return *_log;} 53 53 const t_pppOptions* opt() const {return _opt;} 54 void reset(); 54 55 55 56 private: -
trunk/BNC/src/pppRun.cpp
r7943 r7972 122 122 connect(BNC_CMB, SIGNAL(newClkCorrections(QList<t_clkCorr>)), 123 123 this, SLOT(slotNewClkCorrections(QList<t_clkCorr>)),conType); 124 125 connect(BNC_CORE, SIGNAL(providerIDChanged(QString)), 126 this, SLOT(slotProviderIDChanged(QString))); 124 127 } 125 128 else { … … 678 681 return '$' + nmStr + QString("*%1\n").arg(int(XOR), 0, 16).toUpper(); 679 682 } 683 684 // 685 //////////////////////////////////////////////////////////////////////////// 686 void t_pppRun::slotProviderIDChanged(QString mountPoint) { 687 QMutexLocker locker(&_mutex); 688 689 if (mountPoint.toStdString() !=_opt->_corrMount) { 690 return; 691 } 692 693 QString msg = "pppRun " + QString(_opt->_roverName.c_str()) + ": Provider Changed: " + mountPoint; 694 emit newMessage(msg.toAscii(), true); 695 696 _pppClient->reset(); 697 698 while (!_epoData.empty()) { 699 delete _epoData.front(); 700 _epoData.pop_front(); 701 } 702 } -
trunk/BNC/src/pppRun.h
r7943 r7972 48 48 void slotSetSpeed(int speed); 49 49 void slotSetStopFlag(); 50 void slotProviderIDChanged(QString mountPoint); 50 51 51 52 private:
Note:
See TracChangeset
for help on using the changeset viewer.