Changeset 5723 in ntrip


Ignore:
Timestamp:
Jul 31, 2014, 2:02:46 PM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/PPP
Files:
2 edited

Legend:

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

    r5722 r5723  
    5454////////////////////////////////////////////////////////////////////////////
    5555t_pppThread::t_pppThread(const t_options* opt) : QThread(0) {
     56  _opt = *opt;
    5657}
    5758
     
    9394void t_pppThread::slotNewEphGPS(gpsephemeris gpseph) {
    9495  QMutexLocker locker(&_mutex);
     96  cout << _opt._roverName << " slotNewEphGPS" << endl;
    9597}
    9698
     
    99101void t_pppThread::slotNewEphGlonass(glonassephemeris gloeph) {
    100102  QMutexLocker locker(&_mutex);
     103  cout << _opt._roverName << " slotNewEphGlonass" << endl;
    101104}
    102105 
     
    105108void t_pppThread::slotNewEphGalileo(galileoephemeris /* galeph */) {
    106109  QMutexLocker locker(&_mutex);
     110  cout << _opt._roverName << " slotNewEphGalileo" << endl;
    107111}
    108112
     
    111115void t_pppThread::slotNewCorrections(QList<QString> corrList) {
    112116  QMutexLocker locker(&_mutex);
     117  cout << _opt._roverName << " slotNewEphCorrections" << endl;
    113118}
    114119//
     
    116121void t_pppThread::slotNewObs(QByteArray staID, QList<t_obs> obsList) {
    117122  QMutexLocker locker(&_mutex);
     123  cout << _opt._roverName << " slotNewEphObs" << endl;
    118124}
    119125   
  • trunk/BNC/src/PPP/pppThread.h

    r5721 r5723  
    2626
    2727 private:
    28   QMutex _mutex;
     28  QMutex    _mutex;
     29  t_options _opt;
    2930};
    3031
Note: See TracChangeset for help on using the changeset viewer.