Changeset 5994 in ntrip for trunk/BNC/src
- Timestamp:
- Aug 18, 2014, 9:04:31 AM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnccaster.cpp
r5993 r5994 98 98 99 99 int nmeaPort = settings.value("PPP/nmeaPort").toInt(); 100 cout << "nmeaPort = " << nmeaPort << endl;101 100 if (nmeaPort != 0) { 102 101 _nmeaServer = new QTcpServer; … … 293 292 this, SLOT(slotGetThreadFinished(QByteArray))); 294 293 295 connect(BNC_CORE, SIGNAL(newNMEAstr(QByteArray)), this, SLOT(slotNewNMEAstr(QByteArray))); 294 connect(BNC_CORE, SIGNAL(newNMEAstr(QByteArray, QByteArray)), 295 this, SLOT(slotNewNMEAstr(QByteArray, QByteArray))); 296 296 297 297 _staIDs.push_back(getThread->staID()); … … 534 534 // 535 535 //////////////////////////////////////////////////////////////////////////// 536 void bncCaster::slotNewNMEAstr(QByteArray st r) {536 void bncCaster::slotNewNMEAstr(QByteArray staID, QByteArray str) { 537 537 if (_nmeaSockets) { 538 538 QMutableListIterator<QTcpSocket*> is(*_nmeaSockets); -
trunk/BNC/src/bnccaster.h
r5738 r5994 47 47 void slotNewObs(QByteArray staID, QList<t_obs> obsList); 48 48 void slotNewRawData(QByteArray staID, QByteArray data); 49 void slotNewNMEAstr(QByteArray st r);49 void slotNewNMEAstr(QByteArray staID, QByteArray str); 50 50 void slotNewMiscConnection(); 51 51
Note:
See TracChangeset
for help on using the changeset viewer.