Changeset 5769 in ntrip


Ignore:
Timestamp:
Aug 4, 2014, 9:09:00 AM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/PPP
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppClient.cpp

    r5763 r5769  
    9696//////////////////////////////////////////////////////////////////////////////
    9797t_pppClient::~t_pppClient() {
    98   cout << "~t_pppClient" << endl;
    9998  delete _log;
    10099  delete _opt;
     
    110109//////////////////////////////////////////////////////////////////////////////
    111110void t_pppClient::putGPSEphemeris(const t_ephGPS* eph) {
    112   cout << "t_pppClient::putGPSEphemeris " << PPP_CLIENT << endl;
    113111  _ephPool->putEphemeris(new t_ephGPS(*eph));
    114112}
     
    118116void t_pppClient::putGloEphemeris(const t_ephGlo* eph) {
    119117  _ephPool->putEphemeris(new t_ephGlo(*eph));
     118}
     119
     120//
     121//////////////////////////////////////////////////////////////////////////////
     122void t_pppClient::putGalEphemeris(const t_ephGal* eph) {
     123  _ephPool->putEphemeris(new t_ephGal(*eph));
    120124}
    121125
  • trunk/BNC/src/PPP/pppClient.h

    r5761 r5769  
    2525  void putGPSEphemeris(const t_ephGPS* eph);                 
    2626  void putGloEphemeris(const t_ephGlo* eph);                 
     27  void putGalEphemeris(const t_ephGal* eph);                 
    2728  void putOrbCorrections(int numCorr, const t_orbCorr* corr);
    2829  void putClkCorrections(int numCorr, const t_clkCorr* corr);
  • trunk/BNC/src/PPP/pppThread.cpp

    r5768 r5769  
    125125void t_pppRun::slotNewEphGlonass(glonassephemeris gloeph) {
    126126  QMutexLocker locker(&_mutex);
     127  t_ephGlo eph;
     128  eph.set(&gloeph);
     129  _pppClient->putGloEphemeris(&eph);
    127130}
    128131 
    129132//
    130133////////////////////////////////////////////////////////////////////////////
    131 void t_pppRun::slotNewEphGalileo(galileoephemeris /* galeph */) {
     134void t_pppRun::slotNewEphGalileo(galileoephemeris galeph) {
    132135  QMutexLocker locker(&_mutex);
     136  t_ephGal eph;
     137  eph.set(&galeph);
     138  _pppClient->putGalEphemeris(&eph);
    133139}
    134140
Note: See TracChangeset for help on using the changeset viewer.