Changeset 5577 in ntrip
- Timestamp:
- Nov 25, 2013, 6:06:18 PM (11 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/RTCM3/RTCM3coDecoder.cpp ¶
r5576 r5577 77 77 BNC_CORE, SLOT(slotNewCorrLine(QString, QString, bncTime))); 78 78 79 connect(this, SIGNAL(providerIDChanged(QString)), 80 BNC_CORE, SIGNAL(providerIDChanged(QString))); 81 79 82 connect(this, SIGNAL(newMessage(QByteArray,bool)), 80 83 BNC_CORE, SLOT(slotMessage(const QByteArray,bool))); … … 446 449 447 450 if (alreadySet && different) { 451 emit providerIDChanged(_staID); 448 452 emit newMessage("RTCM3coDecoder: Provider Changed\n", true); 449 453 } -
TabularUnified trunk/BNC/src/RTCM3/RTCM3coDecoder.h ¶
r5576 r5577 52 52 void newCorrLine(QString line, QString staID, bncTime coTime); 53 53 void newMessage(QByteArray msg, bool showOnScreen); 54 void providerIDChanged(QString staID); 54 55 55 56 private: -
TabularUnified trunk/BNC/src/bnccore.cpp ¶
r5387 r5577 834 834 } 835 835 } 836 -
TabularUnified trunk/BNC/src/bnccore.h ¶
r5387 r5577 81 81 void newEphGalileo(galileoephemeris galileoeph); 82 82 void newCorrections(QList<QString>); 83 void providerIDChanged(QString staID); 83 84 84 85 private slots: -
TabularUnified trunk/BNC/src/bncpppclient.cpp ¶
r5576 r5577 76 76 connect(BNC_CORE, SIGNAL(newCorrections(QList<QString>)), 77 77 this, SLOT(slotNewCorrections(QList<QString>))); 78 79 connect(BNC_CORE, SIGNAL(providerIDChanged(QString)), 80 this, SLOT(slotProviderIDChanged(QString))); 78 81 } 79 82 } … … 528 531 } 529 532 533 // 534 //////////////////////////////////////////////////////////////////////////// 535 void bncPPPclient::slotProviderIDChanged(QString staID) { 536 QMutexLocker locker(&_mutex); 537 538 if (staID != _opt->pppCorrMount) { 539 return; 540 } 541 emit newMessage("bncPPPclient: Provider Changed\n", true); 542 } -
TabularUnified trunk/BNC/src/bncpppclient.h ¶
r5576 r5577 133 133 public slots: 134 134 void slotNewCorrections(QList<QString> corrList); 135 void slotProviderIDChanged(QString staID); 135 136 136 137 signals:
Note:
See TracChangeset
for help on using the changeset viewer.