Changeset 3046 in ntrip for trunk/BNC/combination
- Timestamp:
- Feb 25, 2011, 3:14:17 PM (14 years ago)
- Location:
- trunk/BNC/combination
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/combination/bnccomb.cpp
r3035 r3046 25 25 #include "bncutils.h" 26 26 #include "bncpppclient.h" 27 #include "bnssp3.h" 27 28 28 29 using namespace std; … … 170 171 } 171 172 _out = 0; 173 174 // SP3 writer 175 // ---------- 176 if ( settings.value("sp3Path").toString().isEmpty() ) { 177 _sp3 = 0; 178 } 179 else { 180 QString prep = "BNS"; 181 QString ext = ".sp3"; 182 QString path = settings.value("sp3Path").toString(); 183 QString intr = settings.value("sp3Intr").toString(); 184 int sampl = settings.value("sp3Sampl").toInt(); 185 _sp3 = new bnsSP3(prep, ext, path, intr, sampl); 186 } 172 187 } 173 188 … … 182 197 delete _caster; 183 198 delete _out; 199 delete _sp3; 184 200 } 185 201 … … 377 393 } 378 394 } 395 396 //if (_sp3) { 397 // _sp3->write(GPSweek, GPSweeks, prn, xx, _append); 398 //} 379 399 } 380 400 -
trunk/BNC/combination/bnccomb.h
r3035 r3046 8 8 9 9 class cmbCaster; 10 class bnsSP3; 10 11 11 12 class cmbParam { … … 86 87 QString _outName; 87 88 std::ofstream* _out; 89 bnsSP3* _sp3; 88 90 }; 89 91
Note:
See TracChangeset
for help on using the changeset viewer.