- Timestamp:
- Apr 10, 2011, 11:59:11 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/upload/bncrtnetuploadcaster.cpp
r3260 r3272 42 42 _ephUser = new bncEphUser(); 43 43 44 bncSettings settings; 45 QString intr = settings.value("uploadIntr").toString(); 46 int sampl = settings.value("uploadSampl").toInt(); 47 44 48 // Raw Output 45 49 // ---------- 46 50 if (!outFileName.isEmpty()) { 47 _outFile = new bncoutf(outFileName, "", 0);51 _outFile = new bncoutf(outFileName, intr, sampl); 48 52 } 49 53 else { … … 54 58 // ------------ 55 59 if (!rnxFileName.isEmpty()) { 56 _rnx = new bncClockRinex(rnxFileName, "", 0);60 _rnx = new bncClockRinex(rnxFileName, intr, sampl); 57 61 } 58 62 else { … … 63 67 // ---------- 64 68 if (!sp3FileName.isEmpty()) { 65 _sp3 = new bncSP3(sp3FileName, "", 0);69 _sp3 = new bncSP3(sp3FileName, intr, sampl); 66 70 } 67 71 else {
Note:
See TracChangeset
for help on using the changeset viewer.