Changeset 971 in ntrip
- Timestamp:
- Jul 26, 2008, 9:44:25 AM (17 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/RTCM3coDecoder.cpp
r970 r971 68 68 _out = 0; 69 69 70 connect(this, SIGNAL(newCorrLine(QString )),71 (bncApp*) qApp, SLOT(slotNewCorrLine(QString )));70 connect(this, SIGNAL(newCorrLine(QString, QString)), 71 (bncApp*) qApp, SLOT(slotNewCorrLine(QString, QString))); 72 72 } 73 73 … … 169 169 for(int ii = 0; ii < _co.NumberOfGPSSat; ++ii) { 170 170 QString line; 171 line.sprintf("%d %.1f G%2.2d %3d %8.3f %8.3f %8.3f %8.3f \n",171 line.sprintf("%d %.1f G%2.2d %3d %8.3f %8.3f %8.3f %8.3f", 172 172 GPSweek, GPSweeks, _co.Sat[ii].ID, _co.Sat[ii].IOD, 173 173 _co.Sat[ii].Clock.DeltaA0, … … 180 180 ii < CLOCKORBIT_NUMGPS + _co.NumberOfGLONASSSat; ++ii) { 181 181 QString line; 182 line.sprintf("%d %.1f R%2.2d %3d %8.3f %8.3f %8.3f %8.3f \n",182 line.sprintf("%d %.1f R%2.2d %3d %8.3f %8.3f %8.3f %8.3f", 183 183 GPSweek, GPSweeks, _co.Sat[ii].ID, _co.Sat[ii].IOD, 184 184 _co.Sat[ii].Clock.DeltaA0, … … 204 204 void RTCM3coDecoder::printLine(const QString& line) { 205 205 if (_out) { 206 *_out << line.toAscii().data() ;206 *_out << line.toAscii().data() << endl; 207 207 _out->flush(); 208 208 } 209 209 210 emit newCorrLine(line );211 } 210 emit newCorrLine(line, _staID); 211 } -
trunk/BNC/RTCM3/RTCM3coDecoder.h
r970 r971 45 45 46 46 signals: 47 void newCorrLine(QString line );47 void newCorrLine(QString line, QString staID); 48 48 49 49 private: -
trunk/BNC/bncapp.cpp
r945 r971 590 590 // 591 591 //////////////////////////////////////////////////////////////////////////// 592 void bncApp::slotNewCorrLine(QString line ) {592 void bncApp::slotNewCorrLine(QString line, QString staID) { 593 593 if (_socketsCorr) { 594 594 QMutableListIterator<QTcpSocket*> is(*_socketsCorr);
Note:
See TracChangeset
for help on using the changeset viewer.