Changeset 2913 in ntrip


Ignore:
Timestamp:
Jan 27, 2011, 3:48:54 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/combination/bnccomb.cpp

    r2910 r2913  
    3333  _nStreams = combineStreams.size();
    3434 
    35   cout << "HAHA " << _nStreams << endl;
    36 
    3735  if (_nStreams >= 2) {
    3836    QListIterator<QString> it(combineStreams);
     
    5351void bncComb::processCorrLine(const QString& staID, const QString& line) {
    5452  QMutexLocker locker(&_mutex);
     53
     54  t_corr* newCorr = new t_corr();
     55  if (!newCorr->readLine(line) == success) {
     56    delete newCorr;
     57    return;
     58  }
     59
    5560  cout << staID.toAscii().data() << " " << line.toAscii().data() << endl;
    5661}
Note: See TracChangeset for help on using the changeset viewer.