Changeset 2899 in ntrip


Ignore:
Timestamp:
Jan 26, 2011, 6:24:04 PM (13 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnc.pro

    r2888 r2899  
    4141          bncfigurelate.h bncpppclient.h bncversion.h                 \
    4242          bancroft.h bncmodel.h bncfigureppp.h bncrawfile.h           \
    43           bnctides.h bncmap.h bncmapview.h bnccomb.h bncantex.h       \
     43          bnctides.h bncmap.h bncmapview.h bncantex.h                 \
    4444          RTCM/GPSDecoder.h RTCM/RTCM2.h RTCM/RTCM2Decoder.h          \
    4545          RTCM/RTCM2_2021.h RTCM/rtcm_utils.h                         \
     
    6767          bncnetqueryrtp.cpp bncsettings.cpp latencychecker.cpp       \
    6868          bncipport.cpp bncnetqueryv0.cpp bncnetqueryudp.cpp          \
    69           bncnetqueryudp0.cpp bncudpport.cpp bncantex.cpp             \
     69          bncnetqueryudp0.cpp bncudpport.cpp                          \
    7070          bncserialport.cpp bncnetquerys.cpp bncfigure.cpp            \
    7171          bncfigurelate.cpp bncpppclient.cpp bnctime.cpp              \
    7272          bancroft.cpp bncmodel.cpp bncfigureppp.cpp bncrawfile.cpp   \
    73           bnctides.cpp bncmap.cpp bncmapview.cpp bnccomb.cpp          \
     73          bnctides.cpp bncmap.cpp bncmapview.cpp bncantex.cpp         \
    7474          RTCM/RTCM2.cpp RTCM/RTCM2Decoder.cpp                        \
    7575          RTCM/RTCM2_2021.cpp RTCM/rtcm_utils.cpp                     \
     
    9898QT += network
    9999
     100DEFINES += USE_COMBINATION
     101HEADERS += combination/bnccomb.h
     102SOURCES += combination/bnccomb.cpp
     103
  • trunk/BNC/bncapp.cpp

    r2866 r2899  
    4848#include "bncsettings.h"
    4949#include "bncversion.h"
    50 #include "bnccomb.h"
     50
     51#ifdef USE_COMBINATION
     52#include "combination/bnccomb.h"
     53#endif
    5154
    5255using namespace std;
     
    112115  }
    113116
     117#ifdef USE_COMBINATION
    114118  _bncComb = new bncComb();
     119#endif
    115120}
    116121
     
    146151  delete _rawFile;
    147152
     153#ifdef USE_COMBINATION
    148154  delete _bncComb;
     155#endif
    149156}
    150157
     
    735742  // Combination of Corrections
    736743  // --------------------------
     744#ifdef USE_COMBINATION
    737745  if (_bncComb) {
    738746    _bncComb->processCorrLine(staID, line);
    739747  }
     748#endif
    740749
    741750  bncSettings settings;
Note: See TracChangeset for help on using the changeset viewer.