Changeset 6043 in ntrip


Ignore:
Timestamp:
Sep 6, 2014, 2:54:26 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r5972 r6043  
    5151#include "rinex/rnxobsfile.h"
    5252#include "rinex/rnxnavfile.h"
    53 #include "PPP/pppMain.h"
     53
     54#ifdef USE_PPP
     55#  include "PPP/pppMain.h"
     56#endif
    5457
    5558#ifdef USE_COMBINATION
    56 #include "combination/bnccomb.h"
     59#  include "combination/bnccomb.h"
    5760#endif
    5861
     
    128131  _mainWindow = 0;
    129132
     133#ifdef USE_PPP
    130134  _pppMain = new BNC_PPP::t_pppMain();
     135#endif
    131136  qRegisterMetaType< QVector<double> >("QVector<double>");
    132137  qRegisterMetaType<bncTime>("bncTime");
     
    874879////////////////////////////////////////////////////////////////////////////
    875880void t_bncCore::startPPP() {
     881#ifdef USE_PPP
    876882  _pppMain->start();
     883#endif
    877884}
    878885
     
    880887////////////////////////////////////////////////////////////////////////////
    881888void t_bncCore::stopPPP() {
     889#ifdef USE_PPP
    882890  _pppMain->stop();
    883891  emit stopRinexPPP();
    884 }
     892#endif
     893}
Note: See TracChangeset for help on using the changeset viewer.