Changeset 6186 in ntrip
- Timestamp:
- Sep 14, 2014, 3:52:46 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/corrfile.cpp
r6183 r6186 69 69 void t_corrFile::syncRead(const bncTime& tt) { 70 70 71 if (stopRead(tt)) {72 return;73 }74 75 71 _orbCorr.clear(); 76 72 _clkCorr.clear(); 77 73 78 while ( _stream->status() == QTextStream::Ok && !_stream->atEnd()) {74 while (! stopRead(tt0 && _stream->status() == QTextStream::Ok && !_stream->atEnd()) { 79 75 QString line = _stream->readLine().trimmed(); 80 76 if (line.isEmpty() || line[0] == '!') {
Note:
See TracChangeset
for help on using the changeset viewer.