Changeset 5954 in ntrip for trunk/BNC/src/PPP


Ignore:
Timestamp:
Aug 16, 2014, 3:41:47 PM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/PPP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppRun.cpp

    r5953 r5954  
    6767          BNC_CORE, SLOT(slotMessage(const QByteArray,bool)));
    6868
    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>)));
    7171
    7272  for (unsigned iPrn = 0; iPrn <= t_prn::MAXPRN; iPrn++) {
     
    233233      xx.data()[4] = output._neu[1];
    234234      xx.data()[5] = output._neu[2];
    235       emit newPosition(output._epoTime, xx);
     235      emit newPosition(staID, output._epoTime, xx);
    236236    }
    237237
  • trunk/BNC/src/PPP/pppRun.h

    r5951 r5954  
    2626 signals:
    2727  void newMessage(QByteArray msg, bool showOnScreen);
    28   void newPosition(bncTime time, QVector<double> xx);
    29   void newNMEAstr(QByteArray str);
     28  void newPosition(QByteArray staID, bncTime time, QVector<double> xx);
     29  void newNMEAstr(QByteArray staID, QByteArray str);
    3030  void progressRnxPPP(int);
    3131  void finishedRnxPPP();
Note: See TracChangeset for help on using the changeset viewer.