Changeset 2710 in ntrip for trunk/BNC/latencychecker.cpp
- Timestamp:
- Nov 18, 2010, 12:44:38 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/latencychecker.cpp
r2709 r2710 307 307 // Perform latency checks (observations) 308 308 ////////////////////////////////////////////////////////////////////////////// 309 void latencyChecker::checkObsLatency(const QList< p_obs>& obsList) {309 void latencyChecker::checkObsLatency(const QList<t_obs*>& obsList) { 310 310 311 311 if (_perfIntr > 0 ) { 312 312 313 QListIterator< p_obs> it(obsList);313 QListIterator<t_obs*> it(obsList); 314 314 while (it.hasNext()) { 315 p_obsobs = it.next();315 t_obs* obs = it.next(); 316 316 317 317 _newSecGPS = static_cast<int>(obs->GPSWeeks);
Note:
See TracChangeset
for help on using the changeset viewer.