Changeset 5722 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Jul 31, 2014, 1:57:27 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/PPP/pppThread.cpp ΒΆ
r5721 r5722 65 65 void t_pppThread::run() { 66 66 67 68 67 // Connect to BNC Signals 69 68 // ---------------------- 70 connect(BNC_CORE, SIGNAL(newCorrections(QList<QString>)), 71 this, SLOT(slotNewCorrections(QList<QString>))); 69 if (BNC_CORE->caster()) { 70 connect(BNC_CORE->caster(), SIGNAL(newObs(QByteArray, QList<t_obs>)), 71 this, SLOT(slotNewObs(QByteArray, QList<t_obs>))); 72 72 73 connect(BNC_CORE, SIGNAL(newEphGPS(gpsephemeris)), 74 this, SLOT(slotNewEphGPS(gpsephemeris))); 73 connect(BNC_CORE, SIGNAL(newEphGPS(gpsephemeris)), 74 this, SLOT(slotNewEphGPS(gpsephemeris))); 75 76 connect(BNC_CORE, SIGNAL(newEphGlonass(glonassephemeris)), 77 this, SLOT(slotNewEphGlonass(glonassephemeris))); 78 79 connect(BNC_CORE, SIGNAL(newEphGalileo(galileoephemeris)), 80 this, SLOT(slotNewEphGalileo(galileoephemeris))); 75 81 76 connect(BNC_CORE, SIGNAL(newEphGlonass(glonassephemeris)), 77 this, SLOT(slotNewEphGlonass(glonassephemeris))); 78 79 connect(BNC_CORE, SIGNAL(newEphGalileo(galileoephemeris)), 80 this, SLOT(slotNewEphGalileo(galileoephemeris))); 82 connect(BNC_CORE, SIGNAL(newCorrections(QList<QString>)), 83 this, SLOT(slotNewCorrections(QList<QString>))); 84 } 81 85 82 86 // Start processing loop
Note:
See TracChangeset
for help on using the changeset viewer.