Changeset 6432 in ntrip for trunk/BNC/src/pppRun.cpp


Ignore:
Timestamp:
Dec 25, 2014, 6:11:49 PM (9 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/pppRun.cpp

    r6185 r6432  
    8888            this, SLOT(slotNewObs(QByteArray, QList<t_satObs>)),conType);
    8989
    90     connect(BNC_CORE, SIGNAL(newEphGPS(gpsephemeris)),
    91             this, SLOT(slotNewEphGPS(gpsephemeris)),conType);
     90    connect(BNC_CORE, SIGNAL(newEphGPS(t_ephGPS)),
     91            this, SLOT(slotNewEphGPS(t_ephGPS)),conType);
    9292 
    93     connect(BNC_CORE, SIGNAL(newEphGlonass(glonassephemeris)),
    94             this, SLOT(slotNewEphGlonass(glonassephemeris)),conType);
     93    connect(BNC_CORE, SIGNAL(newEphGlonass(t_ephGlo)),
     94            this, SLOT(slotNewEphGlonass(t_ephGlo)),conType);
    9595 
    96     connect(BNC_CORE, SIGNAL(newEphGalileo(galileoephemeris)),
    97             this, SLOT(slotNewEphGalileo(galileoephemeris)),conType);
     96    connect(BNC_CORE, SIGNAL(newEphGalileo(t_ephGal)),
     97            this, SLOT(slotNewEphGalileo(t_ephGal)),conType);
    9898
    9999    connect(BNC_CORE, SIGNAL(newOrbCorrections(QList<t_orbCorr>)),
     
    157157//
    158158////////////////////////////////////////////////////////////////////////////
    159 void t_pppRun::slotNewEphGPS(gpsephemeris gpseph) {
    160   QMutexLocker locker(&_mutex);
    161   t_ephGPS eph;
    162   eph.set(&gpseph);
     159void t_pppRun::slotNewEphGPS(t_ephGPS eph) {
     160  QMutexLocker locker(&_mutex);
    163161  _pppClient->putEphemeris(&eph);
    164162}
     
    166164//
    167165////////////////////////////////////////////////////////////////////////////
    168 void t_pppRun::slotNewEphGlonass(glonassephemeris gloeph) {
    169   QMutexLocker locker(&_mutex);
    170   t_ephGlo eph;
    171   eph.set(&gloeph);
     166void t_pppRun::slotNewEphGlonass(t_ephGlo eph) {
     167  QMutexLocker locker(&_mutex);
    172168  _pppClient->putEphemeris(&eph);
    173169}
     
    175171//
    176172////////////////////////////////////////////////////////////////////////////
    177 void t_pppRun::slotNewEphGalileo(galileoephemeris galeph) {
    178   QMutexLocker locker(&_mutex);
    179   t_ephGal eph;
    180   eph.set(&galeph);
     173void t_pppRun::slotNewEphGalileo(t_ephGal eph) {
     174  QMutexLocker locker(&_mutex);
    181175  _pppClient->putEphemeris(&eph);
    182176}
Note: See TracChangeset for help on using the changeset viewer.