Changeset 5945 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Aug 16, 2014, 1:38:35 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppRun.cpp
r5944 r5945 79 79 BNC_CORE, SIGNAL(newPosition(bncTime, QVector<double>))); 80 80 81 Qt::ConnectionType conType = Qt::AutoConnection; 82 if (BNC_CORE->mode() == t_bncCore::batchPostProcessing) { 83 conType = Qt::BlockingQueuedConnection; 84 } 85 81 86 connect(BNC_CORE->caster(), SIGNAL(newObs(QByteArray, QList<t_obs>)), 82 this, SLOT(slotNewObs(QByteArray, QList<t_obs>)) );87 this, SLOT(slotNewObs(QByteArray, QList<t_obs>)),conType); 83 88 84 89 connect(BNC_CORE, SIGNAL(newEphGPS(gpsephemeris)), 85 this, SLOT(slotNewEphGPS(gpsephemeris)) );90 this, SLOT(slotNewEphGPS(gpsephemeris)),conType); 86 91 87 92 connect(BNC_CORE, SIGNAL(newEphGlonass(glonassephemeris)), 88 this, SLOT(slotNewEphGlonass(glonassephemeris)) );93 this, SLOT(slotNewEphGlonass(glonassephemeris)),conType); 89 94 90 95 connect(BNC_CORE, SIGNAL(newEphGalileo(galileoephemeris)), 91 this, SLOT(slotNewEphGalileo(galileoephemeris)) );96 this, SLOT(slotNewEphGalileo(galileoephemeris)),conType); 92 97 93 98 connect(BNC_CORE, SIGNAL(newCorrections(QStringList)), 94 this, SLOT(slotNewCorrections(QStringList)) );99 this, SLOT(slotNewCorrections(QStringList)),conType); 95 100 } 96 101 else {
Note:
See TracChangeset
for help on using the changeset viewer.