Changeset 2710 in ntrip for trunk/BNC/latencychecker.cpp


Ignore:
Timestamp:
Nov 18, 2010, 12:44:38 PM (14 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/latencychecker.cpp

    r2709 r2710  
    307307// Perform latency checks (observations)
    308308//////////////////////////////////////////////////////////////////////////////
    309 void latencyChecker::checkObsLatency(const QList<p_obs>& obsList) {
     309void latencyChecker::checkObsLatency(const QList<t_obs*>& obsList) {
    310310
    311311  if (_perfIntr > 0 ) {
    312312
    313     QListIterator<p_obs> it(obsList);
     313    QListIterator<t_obs*> it(obsList);
    314314    while (it.hasNext()) {
    315       p_obs obs = it.next();
     315      t_obs* obs = it.next();
    316316     
    317317      _newSecGPS = static_cast<int>(obs->GPSWeeks);
Note: See TracChangeset for help on using the changeset viewer.