Changeset 5991 in ntrip


Ignore:
Timestamp:
Aug 18, 2014, 8:45:03 AM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
3 edited

Legend:

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

    r5990 r5991  
    6969          BNC_CORE, SLOT(slotMessage(const QByteArray,bool)));
    7070
    71   connect(this, SIGNAL(newPosition(QByteArray, bncTime, QVector<double>)),
     71  connect(this,     SIGNAL(newPosition(QByteArray, bncTime, QVector<double>)),
    7272          BNC_CORE, SIGNAL(newPosition(QByteArray, bncTime, QVector<double>)));
     73
     74  connect(this,     SIGNAL(newNMEAstr(QByteArray, QByteArray)),
     75          BNC_CORE, SIGNAL(newNMEAstr(QByteArray, QByteArray)));
    7376
    7477  for (unsigned iPrn = 0; iPrn <= t_prn::MAXPRN; iPrn++) {
  • trunk/BNC/src/bnccaster.cpp

    r5738 r5991  
    292292          this, SLOT(slotGetThreadFinished(QByteArray)));
    293293
    294   connect(getThread, SIGNAL(newNMEAstr(QByteArray)),
    295           this, SLOT(slotNewNMEAstr(QByteArray)));
     294  connect(BNC_CORE, SIGNAL(newNMEAstr(QByteArray)), this, SLOT(slotNewNMEAstr(QByteArray)));
    296295
    297296  _staIDs.push_back(getThread->staID());
  • trunk/BNC/src/bnccore.h

    r5972 r5991  
    9292  void providerIDChanged(QString);
    9393  void newPosition(QByteArray staID, bncTime time, QVector<double> xx);
     94  void newNMEAstr(QByteArray staID, QByteArray str);
    9495  void progressRnxPPP(int);
    9596  void finishedRnxPPP();
Note: See TracChangeset for help on using the changeset viewer.