Changeset 4380 in ntrip
- Timestamp:
- Jul 4, 2012, 12:59:18 PM (12 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncoutf.cpp
r4278 r4380 33 33 _sampl = sampl; 34 34 _intr = intr; 35 _numSec = 0; 35 36 36 37 QFileInfo fileInfo(sklFileName); … … 82 83 } 83 84 } 85 _numSec = 60 * step; 84 86 } 85 87 else if (intStr == "1 hour") { 86 88 char ch = 'A' + datTim.time().hour(); 87 89 epoStr = QString("_") + ch; 90 _numSec = 3600; 88 91 } 89 92 else { 90 93 epoStr = ""; 94 _numSec = 86400; 91 95 } 92 96 -
trunk/BNC/src/bncoutf.h
r4278 r4380 20 20 std::ofstream _out; 21 21 int _sampl; 22 int _numSec; 22 23 23 24 private:
Note:
See TracChangeset
for help on using the changeset viewer.