Changeset 4757 in ntrip for trunk/BNC/src/bncgetthread.cpp


Ignore:
Timestamp:
Oct 22, 2012, 2:59:56 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncgetthread.cpp

    r4478 r4757  
    6363#include "latencychecker.h"
    6464#include "bncpppclient.h"
    65 #ifdef PPP_DLL_INTERFACE
    66 #include "dllinterface.h"
     65#ifdef RTROVER_INTERFACE
     66#include "RTRover/bncrtrover.h"
    6767#endif
    6868#include "upload/bncrtnetdecoder.h"
     
    133133  _nextSleep     = 0;
    134134  _PPPclient     = 0;
    135 #ifdef PPP_DLL_INTERFACE
    136   _dllInterface  = 0;
     135#ifdef RTROVER_INTERFACE
     136  _bncRtrover    = 0;
    137137#endif
    138138  _miscMount     = settings.value("miscMount").toString();
     
    345345    connect(_PPPclient, SIGNAL(newNMEAstr(QByteArray)),
    346346            this,       SIGNAL(newNMEAstr(QByteArray)));
    347 #ifdef PPP_DLL_INTERFACE
    348     _dllInterface = new t_dllInterface();
     347#ifdef RTROVER_INTERFACE
     348    _bncRtrover = new t_bncRtrover();
    349349#endif
    350350  }
     
    379379  }
    380380  delete _PPPclient;
    381 #ifdef PPP_DLL_INTERFACE
    382     delete _dllInterface;
     381#ifdef RTROVER_INTERFACE
     382    delete _bncRtrover;
    383383#endif
    384384  if (_rawFile) {
     
    563563        if (_PPPclient && _staID == _PPPclient->staID()) {
    564564          _PPPclient->putNewObs(obs);
    565 #ifdef PPP_DLL_INTERFACE
    566           _dllInterface->putNewObs(obs);
     565#ifdef RTROVER_INTERFACE
     566          _bncRtrover->putNewObs(obs);
    567567#endif
    568568        }
Note: See TracChangeset for help on using the changeset viewer.