Changeset 5954 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Aug 16, 2014, 3:41:47 PM (10 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppRun.cpp
r5953 r5954 67 67 BNC_CORE, SLOT(slotMessage(const QByteArray,bool))); 68 68 69 connect(this, SIGNAL(newPosition( bncTime, QVector<double>)),70 BNC_CORE, SIGNAL(newPosition( bncTime, QVector<double>)));69 connect(this, SIGNAL(newPosition(QByteArray, bncTime, QVector<double>)), 70 BNC_CORE, SIGNAL(newPosition(QByteArray, bncTime, QVector<double>))); 71 71 72 72 for (unsigned iPrn = 0; iPrn <= t_prn::MAXPRN; iPrn++) { … … 233 233 xx.data()[4] = output._neu[1]; 234 234 xx.data()[5] = output._neu[2]; 235 emit newPosition( output._epoTime, xx);235 emit newPosition(staID, output._epoTime, xx); 236 236 } 237 237 -
trunk/BNC/src/PPP/pppRun.h
r5951 r5954 26 26 signals: 27 27 void newMessage(QByteArray msg, bool showOnScreen); 28 void newPosition( bncTime time, QVector<double> xx);29 void newNMEAstr(QByteArray st r);28 void newPosition(QByteArray staID, bncTime time, QVector<double> xx); 29 void newNMEAstr(QByteArray staID, QByteArray str); 30 30 void progressRnxPPP(int); 31 31 void finishedRnxPPP();
Note:
See TracChangeset
for help on using the changeset viewer.