- Timestamp:
- Oct 18, 2006, 4:19:25 PM (18 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnccaster.cpp
r257 r258 121 121 if ( !settings.value("outFile").toString().isEmpty() || 122 122 !settings.value("outPort").toString().isEmpty() ) { 123 emit( newMessage(QString("Station %1: old epoch %2 thrown away" 124 "(newTime = %3 lastDump = %4)") 125 .arg(staID.data()).arg(iSec).arg(newTime).arg(_lastDumpSec).toAscii()) ); 123 emit( newMessage(QString("Station %1: old epoch %2 thrown away") 124 .arg(staID.data()).arg(iSec).toAscii()) ); 126 125 } 127 126 } -
trunk/BNC/bnccaster.h
r256 r258 21 21 int numStations() const {return _staIDs.size();} 22 22 void newObs(const QByteArray& staID, const QUrl& mountPoint, 23 Observation* obs);23 bool firstObs, Observation* obs); 24 24 25 25 signals: -
trunk/BNC/bncgetthread.cpp
r256 r258 257 257 it != _decoder->_obsList.end(); it++) { 258 258 emit newObs(_staID, *it); 259 _global_caster->newObs(_staID, _mountPoint, *it); 259 bool firstObs = (it == _decoder->_obsList.begin()); 260 _global_caster->newObs(_staID, _mountPoint, firstObs, *it); 260 261 } 261 262 _decoder->_obsList.clear();
Note:
See TracChangeset
for help on using the changeset viewer.