Changeset 5769 in ntrip
- Timestamp:
- Aug 4, 2014, 9:09:00 AM (10 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r5763 r5769 96 96 ////////////////////////////////////////////////////////////////////////////// 97 97 t_pppClient::~t_pppClient() { 98 cout << "~t_pppClient" << endl;99 98 delete _log; 100 99 delete _opt; … … 110 109 ////////////////////////////////////////////////////////////////////////////// 111 110 void t_pppClient::putGPSEphemeris(const t_ephGPS* eph) { 112 cout << "t_pppClient::putGPSEphemeris " << PPP_CLIENT << endl;113 111 _ephPool->putEphemeris(new t_ephGPS(*eph)); 114 112 } … … 118 116 void t_pppClient::putGloEphemeris(const t_ephGlo* eph) { 119 117 _ephPool->putEphemeris(new t_ephGlo(*eph)); 118 } 119 120 // 121 ////////////////////////////////////////////////////////////////////////////// 122 void t_pppClient::putGalEphemeris(const t_ephGal* eph) { 123 _ephPool->putEphemeris(new t_ephGal(*eph)); 120 124 } 121 125 -
trunk/BNC/src/PPP/pppClient.h
r5761 r5769 25 25 void putGPSEphemeris(const t_ephGPS* eph); 26 26 void putGloEphemeris(const t_ephGlo* eph); 27 void putGalEphemeris(const t_ephGal* eph); 27 28 void putOrbCorrections(int numCorr, const t_orbCorr* corr); 28 29 void putClkCorrections(int numCorr, const t_clkCorr* corr); -
trunk/BNC/src/PPP/pppThread.cpp
r5768 r5769 125 125 void t_pppRun::slotNewEphGlonass(glonassephemeris gloeph) { 126 126 QMutexLocker locker(&_mutex); 127 t_ephGlo eph; 128 eph.set(&gloeph); 129 _pppClient->putGloEphemeris(&eph); 127 130 } 128 131 129 132 // 130 133 //////////////////////////////////////////////////////////////////////////// 131 void t_pppRun::slotNewEphGalileo(galileoephemeris /* galeph */) {134 void t_pppRun::slotNewEphGalileo(galileoephemeris galeph) { 132 135 QMutexLocker locker(&_mutex); 136 t_ephGal eph; 137 eph.set(&galeph); 138 _pppClient->putGalEphemeris(&eph); 133 139 } 134 140
Note:
See TracChangeset
for help on using the changeset viewer.