Changeset 2899 in ntrip
- Timestamp:
- Jan 26, 2011, 6:24:04 PM (14 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnc.pro
r2888 r2899 41 41 bncfigurelate.h bncpppclient.h bncversion.h \ 42 42 bancroft.h bncmodel.h bncfigureppp.h bncrawfile.h \ 43 bnctides.h bncmap.h bncmapview.h bnc comb.h bncantex.h \43 bnctides.h bncmap.h bncmapview.h bncantex.h \ 44 44 RTCM/GPSDecoder.h RTCM/RTCM2.h RTCM/RTCM2Decoder.h \ 45 45 RTCM/RTCM2_2021.h RTCM/rtcm_utils.h \ … … 67 67 bncnetqueryrtp.cpp bncsettings.cpp latencychecker.cpp \ 68 68 bncipport.cpp bncnetqueryv0.cpp bncnetqueryudp.cpp \ 69 bncnetqueryudp0.cpp bncudpport.cpp bncantex.cpp\69 bncnetqueryudp0.cpp bncudpport.cpp \ 70 70 bncserialport.cpp bncnetquerys.cpp bncfigure.cpp \ 71 71 bncfigurelate.cpp bncpppclient.cpp bnctime.cpp \ 72 72 bancroft.cpp bncmodel.cpp bncfigureppp.cpp bncrawfile.cpp \ 73 bnctides.cpp bncmap.cpp bncmapview.cpp bnc comb.cpp\73 bnctides.cpp bncmap.cpp bncmapview.cpp bncantex.cpp \ 74 74 RTCM/RTCM2.cpp RTCM/RTCM2Decoder.cpp \ 75 75 RTCM/RTCM2_2021.cpp RTCM/rtcm_utils.cpp \ … … 98 98 QT += network 99 99 100 DEFINES += USE_COMBINATION 101 HEADERS += combination/bnccomb.h 102 SOURCES += combination/bnccomb.cpp 103 -
trunk/BNC/bncapp.cpp
r2866 r2899 48 48 #include "bncsettings.h" 49 49 #include "bncversion.h" 50 #include "bnccomb.h" 50 51 #ifdef USE_COMBINATION 52 #include "combination/bnccomb.h" 53 #endif 51 54 52 55 using namespace std; … … 112 115 } 113 116 117 #ifdef USE_COMBINATION 114 118 _bncComb = new bncComb(); 119 #endif 115 120 } 116 121 … … 146 151 delete _rawFile; 147 152 153 #ifdef USE_COMBINATION 148 154 delete _bncComb; 155 #endif 149 156 } 150 157 … … 735 742 // Combination of Corrections 736 743 // -------------------------- 744 #ifdef USE_COMBINATION 737 745 if (_bncComb) { 738 746 _bncComb->processCorrLine(staID, line); 739 747 } 748 #endif 740 749 741 750 bncSettings settings;
Note:
See TracChangeset
for help on using the changeset viewer.