Changeset 3692 in ntrip
- Timestamp:
- Feb 12, 2012, 2:59:38 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/corrfile.cpp
r3691 r3692 66 66 void t_corrFile::syncRead(const bncTime& tt) { 67 67 68 cout << "tt = " << tt.gpssec() << endl;69 70 68 if (stopRead(tt)) { 71 69 return; … … 74 72 QList<QString> corrs; 75 73 76 if (!_lastLine.isEmpty() && !stopRead(tt)) {74 if (!_lastLine.isEmpty()) { 77 75 corrs << _lastLine; 78 cout << _lastLine.toAscii().data() << endl;79 76 } 80 77 … … 87 84 88 85 if (stopRead(tt)) { 89 cout << "stop " << endl;90 86 if (corrs.size()) { 91 87 emit newCorrections(corrs); … … 95 91 else { 96 92 corrs << _lastLine; 97 cout << _lastLine.toAscii().data() << endl;98 93 } 99 94 }
Note:
See TracChangeset
for help on using the changeset viewer.