Changeset 5991 in ntrip for trunk/BNC/src
- Timestamp:
- Aug 18, 2014, 8:45:03 AM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppRun.cpp
r5990 r5991 69 69 BNC_CORE, SLOT(slotMessage(const QByteArray,bool))); 70 70 71 connect(this, SIGNAL(newPosition(QByteArray, bncTime, QVector<double>)),71 connect(this, SIGNAL(newPosition(QByteArray, bncTime, QVector<double>)), 72 72 BNC_CORE, SIGNAL(newPosition(QByteArray, bncTime, QVector<double>))); 73 74 connect(this, SIGNAL(newNMEAstr(QByteArray, QByteArray)), 75 BNC_CORE, SIGNAL(newNMEAstr(QByteArray, QByteArray))); 73 76 74 77 for (unsigned iPrn = 0; iPrn <= t_prn::MAXPRN; iPrn++) { -
trunk/BNC/src/bnccaster.cpp
r5738 r5991 292 292 this, SLOT(slotGetThreadFinished(QByteArray))); 293 293 294 connect(getThread, SIGNAL(newNMEAstr(QByteArray)), 295 this, SLOT(slotNewNMEAstr(QByteArray))); 294 connect(BNC_CORE, SIGNAL(newNMEAstr(QByteArray)), this, SLOT(slotNewNMEAstr(QByteArray))); 296 295 297 296 _staIDs.push_back(getThread->staID()); -
trunk/BNC/src/bnccore.h
r5972 r5991 92 92 void providerIDChanged(QString); 93 93 void newPosition(QByteArray staID, bncTime time, QVector<double> xx); 94 void newNMEAstr(QByteArray staID, QByteArray str); 94 95 void progressRnxPPP(int); 95 96 void finishedRnxPPP();
Note:
See TracChangeset
for help on using the changeset viewer.