Changeset 5732 in ntrip
- Timestamp:
- Jul 31, 2014, 4:28:21 PM (11 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/PPP/pppThread.cpp ¶
r5731 r5732 94 94 this, SLOT(slotNewEphGalileo(galileoephemeris))); 95 95 96 connect(BNC_CORE, SIGNAL(newCorrections(Q List<QString>)),97 this, SLOT(slotNewCorrections(Q List<QString>)));96 connect(BNC_CORE, SIGNAL(newCorrections(QStringList)), 97 this, SLOT(slotNewCorrections(QStringList))); 98 98 } 99 99 } … … 128 128 // 129 129 //////////////////////////////////////////////////////////////////////////// 130 void t_pppRun::slotNewCorrections(Q List<QString>corrList) {130 void t_pppRun::slotNewCorrections(QStringList corrList) { 131 131 QMutexLocker locker(&_mutex); 132 132 cout << _opt._roverName << " slotNewCorrections" << endl; -
TabularUnified trunk/BNC/src/PPP/pppThread.h ¶
r5731 r5732 20 20 void slotNewEphGlonass(glonassephemeris gloeph); 21 21 void slotNewEphGalileo(galileoephemeris galeph); 22 void slotNewCorrections(Q List<QString>corrList);22 void slotNewCorrections(QStringList corrList); 23 23 void slotNewObs(QByteArray staID, QList<t_obs> obsList); 24 24 -
TabularUnified trunk/BNC/src/bnccore.cpp ¶
r5729 r5732 690 690 //////////////////////////////////////////////////////////////////////////// 691 691 void t_bncCore::dumpCorrs(bncTime minTime, bncTime maxTime) { 692 Q List<QString>allCorrs;692 QStringList allCorrs; 693 693 QMutableMapIterator<bncTime, QString> it(*_corrs); 694 694 while (it.hasNext()) { … … 706 706 //////////////////////////////////////////////////////////////////////////// 707 707 void t_bncCore::dumpCorrs() { 708 Q List<QString>allCorrs;708 QStringList allCorrs; 709 709 QMutableMapIterator<bncTime, QString> it(*_corrs); 710 710 while (it.hasNext()) { … … 717 717 // Dump List of Corrections 718 718 //////////////////////////////////////////////////////////////////////////// 719 void t_bncCore::dumpCorrs(const Q List<QString>& allCorrs) {719 void t_bncCore::dumpCorrs(const QStringList& allCorrs) { 720 720 emit newCorrections(allCorrs); 721 721 if (_socketsCorr) { -
TabularUnified trunk/BNC/src/bnccore.h ¶
r5729 r5732 81 81 void newEphGlonass(glonassephemeris glonasseph); 82 82 void newEphGalileo(galileoephemeris galileoeph); 83 void newCorrections(Q List<QString>);83 void newCorrections(QStringList); 84 84 void providerIDChanged(QString); 85 85 … … 96 96 void dumpCorrs(bncTime minTime, bncTime maxTime); 97 97 void dumpCorrs(); 98 void dumpCorrs(const Q List<QString>& allCorrs);98 void dumpCorrs(const QStringList& allCorrs); 99 99 void messagePrivate(const QByteArray& msg); 100 100 void checkEphemeris(gpsephemeris* oldEph, gpsephemeris* newEph); -
TabularUnified trunk/BNC/src/bncpppclient.cpp ¶
r5579 r5732 74 74 BNC_CORE, SLOT(slotMessage(const QByteArray,bool))); 75 75 76 connect(BNC_CORE, SIGNAL(newCorrections(Q List<QString>)),77 this, SLOT(slotNewCorrections(Q List<QString>)));76 connect(BNC_CORE, SIGNAL(newCorrections(QStringList)), 77 this, SLOT(slotNewCorrections(QStringList))); 78 78 79 79 connect(BNC_CORE, SIGNAL(providerIDChanged(QString)), … … 254 254 // 255 255 //////////////////////////////////////////////////////////////////////////// 256 void bncPPPclient::slotNewCorrections(Q List<QString>corrList) {256 void bncPPPclient::slotNewCorrections(QStringList corrList) { 257 257 QMutexLocker locker(&_mutex); 258 258 -
TabularUnified trunk/BNC/src/bncpppclient.h ¶
r5578 r5732 132 132 133 133 public slots: 134 void slotNewCorrections(Q List<QString>corrList);134 void slotNewCorrections(QStringList corrList); 135 135 void slotProviderIDChanged(QString mountPoint); 136 136 -
TabularUnified trunk/BNC/src/rinex/bncpostprocess.cpp ¶
r5268 r5732 169 169 if (!_opt->corrFileName.isEmpty()) { 170 170 _corrFile = new t_corrFile(_opt->corrFileName); 171 connect(_corrFile, SIGNAL(newCorrections(Q List<QString>)),172 _pppClient, SLOT(slotNewCorrections(Q List<QString>)),171 connect(_corrFile, SIGNAL(newCorrections(QStringList)), 172 _pppClient, SLOT(slotNewCorrections(QStringList)), 173 173 Qt::DirectConnection); 174 174 } -
TabularUnified trunk/BNC/src/rinex/corrfile.cpp ¶
r3756 r5732 71 71 } 72 72 73 Q List<QString>corrs;73 QStringList corrs; 74 74 75 75 if (!_lastLine.isEmpty()) { -
TabularUnified trunk/BNC/src/rinex/corrfile.h ¶
r3756 r5732 40 40 41 41 signals: 42 void newCorrections(Q List<QString>);42 void newCorrections(QStringList); 43 43 44 44 private:
Note:
See TracChangeset
for help on using the changeset viewer.