Changeset 4380 in ntrip


Ignore:
Timestamp:
Jul 4, 2012, 12:59:18 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncoutf.cpp

    r4278 r4380  
    3333  _sampl         = sampl;
    3434  _intr          = intr;
     35  _numSec        = 0;
    3536
    3637  QFileInfo fileInfo(sklFileName);
     
    8283      }
    8384    }
     85    _numSec = 60 * step;
    8486  }
    8587  else if (intStr == "1 hour") {
    8688    char ch = 'A' + datTim.time().hour();
    8789    epoStr = QString("_") + ch;
     90    _numSec = 3600;
    8891  }
    8992  else {
    9093    epoStr = "";
     94    _numSec = 86400;
    9195  }
    9296
  • trunk/BNC/src/bncoutf.h

    r4278 r4380  
    2020  std::ofstream _out;
    2121  int           _sampl;
     22  int           _numSec;
    2223
    2324 private:
Note: See TracChangeset for help on using the changeset viewer.