Changeset 6433 in ntrip


Ignore:
Timestamp:
Dec 25, 2014, 6:19:17 PM (9 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
2 edited

Legend:

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

    r6432 r6433  
    8888            this, SLOT(slotNewObs(QByteArray, QList<t_satObs>)),conType);
    8989
    90     connect(BNC_CORE, SIGNAL(newEphGPS(t_ephGPS)),
    91             this, SLOT(slotNewEphGPS(t_ephGPS)),conType);
     90    connect(BNC_CORE, SIGNAL(newGPSEph(t_ephGPS)),
     91            this, SLOT(slotNewGPSEph(t_ephGPS)),conType);
    9292 
    93     connect(BNC_CORE, SIGNAL(newEphGlonass(t_ephGlo)),
    94             this, SLOT(slotNewEphGlonass(t_ephGlo)),conType);
     93    connect(BNC_CORE, SIGNAL(newGlonassEph(t_ephGlo)),
     94            this, SLOT(slotNewGlonassEph(t_ephGlo)),conType);
    9595 
    96     connect(BNC_CORE, SIGNAL(newEphGalileo(t_ephGal)),
    97             this, SLOT(slotNewEphGalileo(t_ephGal)),conType);
     96    connect(BNC_CORE, SIGNAL(newGalileoEph(t_ephGal)),
     97            this, SLOT(slotNewGalileoEph(t_ephGal)),conType);
    9898
    9999    connect(BNC_CORE, SIGNAL(newOrbCorrections(QList<t_orbCorr>)),
     
    157157//
    158158////////////////////////////////////////////////////////////////////////////
    159 void t_pppRun::slotNewEphGPS(t_ephGPS eph) {
     159void t_pppRun::slotNewGPSEph(t_ephGPS eph) {
    160160  QMutexLocker locker(&_mutex);
    161161  _pppClient->putEphemeris(&eph);
     
    164164//
    165165////////////////////////////////////////////////////////////////////////////
    166 void t_pppRun::slotNewEphGlonass(t_ephGlo eph) {
     166void t_pppRun::slotNewGlonassEph(t_ephGlo eph) {
    167167  QMutexLocker locker(&_mutex);
    168168  _pppClient->putEphemeris(&eph);
     
    171171//
    172172////////////////////////////////////////////////////////////////////////////
    173 void t_pppRun::slotNewEphGalileo(t_ephGal eph) {
     173void t_pppRun::slotNewGalileoEph(t_ephGal eph) {
    174174  QMutexLocker locker(&_mutex);
    175175  _pppClient->putEphemeris(&eph);
  • trunk/BNC/src/pppRun.h

    r6432 r6433  
    3535
    3636 public slots:
    37   void slotNewEphGPS(t_ephGPS);
    38   void slotNewEphGlonass(t_ephGlo);
    39   void slotNewEphGalileo(t_ephGal);
     37  void slotNewGPSEph(t_ephGPS);
     38  void slotNewGlonassEph(t_ephGlo);
     39  void slotNewGalileoEph(t_ephGal);
    4040  void slotNewOrbCorrections(QList<t_orbCorr> orbCorr);
    4141  void slotNewClkCorrections(QList<t_clkCorr> clkCorr);
Note: See TracChangeset for help on using the changeset viewer.