- Timestamp:
- Nov 21, 2009, 3:46:18 PM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bncapp.cpp ¶
r1944 r2001 683 683 for (long sec = minTime; sec <= maxTime; sec++) { 684 684 QList<QString> allCorrs = _corrs->values(sec); 685 emit newCorrections(allCorrs); 685 686 QListIterator<QString> it(allCorrs); 686 687 while (it.hasNext()) { -
TabularUnified trunk/BNC/bncapp.h ¶
r1549 r2001 57 57 void newEphGPS(gpsephemeris gpseph); 58 58 void newEphGlonass(glonassephemeris glonasseph); 59 void newCorrections(QList<QString>); 59 60 60 61 private slots: -
TabularUnified trunk/BNC/bnccaster.cpp ¶
r2000 r2001 258 258 connect(((bncApp*)qApp), SIGNAL(newEphGPS(gpsephemeris)), 259 259 PPPthread, SLOT(slotNewEphGPS(gpsephemeris))); 260 connect(((bncApp*)qApp), SIGNAL(newCorrections(QList<QString>)), 261 PPPthread, SLOT(slotNewCorrections(QList<QString>))); 260 262 PPPthread->start(); 261 263 } -
TabularUnified trunk/BNC/bncpppthread.cpp ¶
r1999 r2001 90 90 // 91 91 //////////////////////////////////////////////////////////////////////////// 92 void bncPPPthread::slotNewEpochData(QList<p_obs>) { 92 void bncPPPthread::slotNewEpochData(QList<p_obs> obsList) { 93 93 94 94 } … … 99 99 100 100 } 101 102 // 103 //////////////////////////////////////////////////////////////////////////// 104 void bncPPPthread::slotNewCorrections(QList<QString> corrList) { 105 106 } -
TabularUnified trunk/BNC/bncpppthread.h ¶
r1999 r2001 52 52 53 53 public slots: 54 void slotNewEpochData(QList<p_obs>); 54 void slotNewEpochData(QList<p_obs> obsList); 55 55 void slotNewEphGPS(gpsephemeris gpseph); 56 void slotNewCorrections(QList<QString> corrList); 56 57 57 58 private:
Note:
See TracChangeset
for help on using the changeset viewer.