Changeset 4763 in ntrip for trunk/BNC/src/bnccaster.cpp


Ignore:
Timestamp:
Oct 23, 2012, 10:42:42 AM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r4536 r4763  
    5252#include "bncsettings.h"
    5353#include "RTCM/GPSDecoder.h"
     54#ifdef RTROVER_INTERFACE
     55#  include "RTRover/bncrtrover.h"
     56#endif
    5457
    5558using namespace std;
     
    131134  _lastDumpSec  = 0;
    132135  _confInterval = -1;
     136#ifdef RTROVER_INTERFACE
     137    _bncRtrover = new t_bncRtrover();
     138    _bncRtrover->start();
     139#endif
    133140}
    134141
     
    267274  connect(getThread, SIGNAL(newObs(QByteArray, bool, t_obs)),
    268275          this,      SLOT(newObs(QByteArray, bool, t_obs)));
     276
     277#ifdef RTROVER_INTERFACE
     278  connect(getThread, SIGNAL(newObs(QByteArray, bool, t_obs)),
     279          _bncRtrover, SLOT(slotNewObs(QByteArray, bool, t_obs)));
     280#endif
    269281
    270282  connect(getThread, SIGNAL(getThreadFinished(QByteArray)),
Note: See TracChangeset for help on using the changeset viewer.