Changeset 7862 in ntrip
- Timestamp:
- Apr 11, 2016, 2:21:08 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncsinextro.cpp
r7848 r7862 34 34 (!sampl) ? _sampl = 1 : _sampl = sampl; 35 35 36 if (!_opt->_antexFileName.empty()) { 37 _antex = new bncAntex(_opt->_antexFileName.c_str()); 38 } 39 else { 40 _antex = 0; 41 } 36 _antex = 0; 42 37 } 43 38 … … 149 144 _out << "-SITE/ANTENNA" << endl << endl; 150 145 151 if (_antex) { 146 if (!_opt->_antexFileName.empty()) { 147 _antex = new bncAntex(_opt->_antexFileName.c_str()); 152 148 if (_opt->_LCsGPS.size()) { 153 149 _out << "+SITE/GPS_PHASE_CENTER" << endl; … … 196 192 _out << "-SITE/BEIDOU_PHASE_CENTER" << endl << endl; 197 193 } 194 delete _antex; 195 _antex = 0; 198 196 } 199 197
Note:
See TracChangeset
for help on using the changeset viewer.