Changeset 4757 in ntrip


Ignore:
Timestamp:
Oct 22, 2012, 2:59:56 PM (11 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
4 added
3 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        }
  • trunk/BNC/src/bncgetthread.h

    r4476 r4757  
    4141class latencyChecker;
    4242class bncPPPclient;
    43 #ifdef PPP_DLL_INTERFACE
    44 class t_dllInterface;
     43#ifdef RTROVER_INTERFACE
     44class t_bncRtrover;
    4545#endif
    4646
     
    128128   bool                       _rawOutput;
    129129   QMap<QString, long>        _prnLastEpo;
    130 #ifdef PPP_DLL_INTERFACE
    131    t_dllInterface*            _dllInterface;
     130#ifdef RTROVER_INTERFACE
     131   t_bncRtrover*              _bncRtrover;
    132132#endif
    133133   QMap<char, QVector<QString> > _rnxTypes;
  • trunk/BNC/src/src.pro

    r4672 r4757  
    128128}
    129129
     130# Link to a 3rd-part library (test)
     131# ---------------------------------
     132# use_RTRover = true
     133
     134equals(use_RTRover, true) {
     135  DEFINES += RTROVER_INTERFACE
     136  HEADERS += RTRover/bncrtrover.h
     137  SOURCES += RTRover/bncrtrover.cpp
     138  LIBS    += -L RTRover -l RTRover
     139
     140
Note: See TracChangeset for help on using the changeset viewer.