Changeset 625 in ntrip
- Timestamp:
- Dec 16, 2007, 5:24:59 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM/GPSDecoder.h
r624 r625 26 26 #define GPSDECODER_H 27 27 28 #include <iostream> 28 29 #include <QPointer> 29 30 #include <QList> … … 76 77 } 77 78 79 ~t_obs() {std::cout << "delete " << _o.StatID << " " << _status << std::endl;} 80 78 81 t_obsInternal _o; 79 82 t_obs_status _status; … … 90 93 while (it.hasNext()) { 91 94 p_obs obs = it.next(); 92 if ( obs->_status == t_obs::initial) {95 if (!obs.isNull() && obs->_status == t_obs::initial) { 93 96 delete obs; 94 97 }
Note:
See TracChangeset
for help on using the changeset viewer.