Changeset 2913 in ntrip
- Timestamp:
- Jan 27, 2011, 3:48:54 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/combination/bnccomb.cpp ¶
r2910 r2913 33 33 _nStreams = combineStreams.size(); 34 34 35 cout << "HAHA " << _nStreams << endl;36 37 35 if (_nStreams >= 2) { 38 36 QListIterator<QString> it(combineStreams); … … 53 51 void bncComb::processCorrLine(const QString& staID, const QString& line) { 54 52 QMutexLocker locker(&_mutex); 53 54 t_corr* newCorr = new t_corr(); 55 if (!newCorr->readLine(line) == success) { 56 delete newCorr; 57 return; 58 } 59 55 60 cout << staID.toAscii().data() << " " << line.toAscii().data() << endl; 56 61 }
Note:
See TracChangeset
for help on using the changeset viewer.