Changeset 258 in ntrip


Ignore:
Timestamp:
Oct 18, 2006, 4:19:25 PM (18 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnccaster.cpp

    r257 r258  
    121121      if ( !settings.value("outFile").toString().isEmpty() ||
    122122           !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()) );
    126125      }
    127126    }
  • trunk/BNC/bnccaster.h

    r256 r258  
    2121   int  numStations() const {return _staIDs.size();}
    2222   void newObs(const QByteArray& staID, const QUrl& mountPoint,
    23                Observation* obs);
     23               bool firstObs, Observation* obs);
    2424
    2525 signals:
  • trunk/BNC/bncgetthread.cpp

    r256 r258  
    257257             it != _decoder->_obsList.end(); it++) {
    258258          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);
    260261        }
    261262        _decoder->_obsList.clear();
Note: See TracChangeset for help on using the changeset viewer.