Changeset 3272 in ntrip


Ignore:
Timestamp:
Apr 10, 2011, 11:59:11 AM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/upload/bncrtnetuploadcaster.cpp

    r3260 r3272  
    4242  _ephUser = new bncEphUser();
    4343
     44  bncSettings settings;
     45  QString     intr  = settings.value("uploadIntr").toString();
     46  int         sampl = settings.value("uploadSampl").toInt();
     47
    4448  // Raw Output
    4549  // ----------
    4650  if (!outFileName.isEmpty()) {
    47     _outFile = new bncoutf(outFileName, "", 0);
     51    _outFile = new bncoutf(outFileName, intr, sampl);
    4852  }
    4953  else {
     
    5458  // ------------
    5559  if (!rnxFileName.isEmpty()) {
    56     _rnx = new bncClockRinex(rnxFileName, "", 0);
     60    _rnx = new bncClockRinex(rnxFileName, intr, sampl);
    5761  }
    5862  else {
     
    6367  // ----------
    6468  if (!sp3FileName.isEmpty()) {
    65     _sp3 = new bncSP3(sp3FileName, "", 0);
     69    _sp3 = new bncSP3(sp3FileName, intr, sampl);
    6670  }
    6771  else {
Note: See TracChangeset for help on using the changeset viewer.