Changeset 5941 in ntrip


Ignore:
Timestamp:
Aug 16, 2014, 9:42:15 AM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
3 edited

Legend:

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

    r5940 r5941  
    9898    _maxSpeed   = 0;
    9999    _speed      = 0;
     100    connect(this, SIGNAL(progressRnxPPP(int)), BNC_CORE, SIGNAL(progressRnxPPP(int)));
     101    connect(this, SIGNAL(finishedRnxPPP()),    BNC_CORE, SIGNAL(finishedRnxPPP()));
    100102  }
    101103}
  • trunk/BNC/src/bnccore.h

    r5905 r5941  
    9292  void providerIDChanged(QString);
    9393  void newPosition(bncTime time, QVector<double> xx);
     94  void progressRnxPPP(int);
     95  void finishedRnxPPP();
    9496   
    9597 private slots:
  • trunk/BNC/src/bncwindow.cpp

    r5939 r5941  
    9090  _bncFigureLate = new bncFigureLate(this);
    9191  _bncFigurePPP  = new bncFigurePPP(this);
     92
    9293  connect(BNC_CORE, SIGNAL(newPosition(bncTime, QVector<double>)),
    9394          _bncFigurePPP, SLOT(slotNewPosition(bncTime, QVector<double>)));
     95
     96  connect(BNC_CORE, SIGNAL(progressRnxPPP(int)), this, SLOT(slotPostProgress(int)));
     97
    9498  _runningRealTime           = false;
    9599  _runningPostProcessingReqc = false;
Note: See TracChangeset for help on using the changeset viewer.