Changeset 6043 in ntrip
- Timestamp:
- Sep 6, 2014, 2:54:26 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnccore.cpp
r5972 r6043 51 51 #include "rinex/rnxobsfile.h" 52 52 #include "rinex/rnxnavfile.h" 53 #include "PPP/pppMain.h" 53 54 #ifdef USE_PPP 55 # include "PPP/pppMain.h" 56 #endif 54 57 55 58 #ifdef USE_COMBINATION 56 # include "combination/bnccomb.h"59 # include "combination/bnccomb.h" 57 60 #endif 58 61 … … 128 131 _mainWindow = 0; 129 132 133 #ifdef USE_PPP 130 134 _pppMain = new BNC_PPP::t_pppMain(); 135 #endif 131 136 qRegisterMetaType< QVector<double> >("QVector<double>"); 132 137 qRegisterMetaType<bncTime>("bncTime"); … … 874 879 //////////////////////////////////////////////////////////////////////////// 875 880 void t_bncCore::startPPP() { 881 #ifdef USE_PPP 876 882 _pppMain->start(); 883 #endif 877 884 } 878 885 … … 880 887 //////////////////////////////////////////////////////////////////////////// 881 888 void t_bncCore::stopPPP() { 889 #ifdef USE_PPP 882 890 _pppMain->stop(); 883 891 emit stopRinexPPP(); 884 } 892 #endif 893 }
Note:
See TracChangeset
for help on using the changeset viewer.