Changeset 3577 in ntrip


Ignore:
Timestamp:
Dec 26, 2011, 9:39:41 AM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncgetthread.cpp

    r3562 r3577  
    6363#include "latencychecker.h"
    6464#include "bncpppclient.h"
     65#ifdef PPP_DLL_INTERFACE
     66#include "dllinterface.h"
     67#endif
    6568#include "upload/bncrtnetdecoder.h"
    6669#include "RTCM/RTCM2Decoder.h"
     
    128131  _nextSleep     = 0;
    129132  _PPPclient     = 0;
     133#ifdef PPP_DLL_INTERFACE
     134  _dllInterface  = 0;
     135#endif
    130136  _miscMount     = settings.value("miscMount").toString();
    131137  _decoder   = 0;
     
    337343    connect(_PPPclient, SIGNAL(newNMEAstr(QByteArray)),
    338344            this,       SIGNAL(newNMEAstr(QByteArray)));
     345#ifdef PPP_DLL_INTERFACE
     346    _dllInterface = new t_dllInterface();
     347#endif
    339348  }
    340349#endif
     
    368377  }
    369378  delete _PPPclient;
     379#ifdef PPP_DLL_INTERFACE
     380    delete _dllInterface;
     381#endif
    370382  if (_rawFile) {
    371383    QMapIterator<QString, GPSDecoder*> it(_decodersRaw);
     
    549561        if (_PPPclient && _staID == _PPPclient->staID()) {
    550562          _PPPclient->putNewObs(obs);
     563#ifdef PPP_DLL_INTERFACE
     564          _dllInterface->putNewObs(obs);
     565#endif
    551566        }
    552567#endif
  • trunk/BNC/bncgetthread.h

    r3562 r3577  
    4141class latencyChecker;
    4242class bncPPPclient;
     43#ifdef PPP_DLL_INTERFACE
     44class t_dllInterface;
     45#endif
    4346
    4447class bncGetThread : public QThread {
     
    124127   bool                       _rawOutput;
    125128   QMap<QString, long>        _prnLastEpo;
     129#ifdef PPP_DLL_INTERFACE
     130   t_dllInterface*            _dllInterface;
     131#endif
    126132};
    127133
Note: See TracChangeset for help on using the changeset viewer.