Changeset 624 in ntrip for trunk/BNC/RTCM
- Timestamp:
- Dec 16, 2007, 4:53:14 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM/GPSDecoder.h
r623 r624 76 76 } 77 77 78 ~t_obs() {79 if (_status == posted) {80 return;81 }82 }83 84 78 t_obsInternal _o; 85 79 t_obs_status _status; … … 95 89 QListIterator<p_obs> it(_obsList); 96 90 while (it.hasNext()) { 97 delete it.next(); 91 p_obs obs = it.next(); 92 if (obs->_status == t_obs::initial) { 93 delete obs; 94 } 98 95 } 99 96 }
Note:
See TracChangeset
for help on using the changeset viewer.