Ignore:
Timestamp:
Sep 7, 2014, 10:13:42 AM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP_free/bncpppclient.cpp

    r6067 r6068  
    8484//
    8585////////////////////////////////////////////////////////////////////////////
    86 void bncPPPclient::putNewObs(const t_obs& obs) {
     86void bncPPPclient::putNewObs(const t_obs& obs, t_output* output) {
    8787  QMutexLocker locker(&_mutex);
    8888
     
    132132  }
    133133  else if (satData->tt != _epoData.back()->tt) {
    134     processEpochs();
     134    processEpochs(output);
    135135    _epoData.push(new t_epoData());
    136136    _epoData.back()->tt = satData->tt;
     
    407407//
    408408////////////////////////////////////////////////////////////////////////////
    409 void bncPPPclient::processFrontEpoch() {
     409void bncPPPclient::processFrontEpoch(t_output* output) {
    410410
    411411#ifdef BNC_DEBUG
     
    475475//
    476476////////////////////////////////////////////////////////////////////////////
    477 void bncPPPclient::processEpochs() {
     477void bncPPPclient::processEpochs(t_output* output) {
    478478
    479479  // Make sure the buffer does not grow beyond any limit
     
    500500    // -----------------------
    501501    if (_opt->_corrWaitTime == 0.0 || frontEpoData->tt - _corr_tt >= _opt->_corrWaitTime) {
    502       processFrontEpoch();
     502      processFrontEpoch(output);
    503503      delete _epoData.front();
    504504      _epoData.pop();
Note: See TracChangeset for help on using the changeset viewer.