- Timestamp:
- Dec 16, 2007, 4:49:33 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM/GPSDecoder.h
r622 r623 52 52 class t_obs : public QObject{ 53 53 public: 54 enum t_obs_status {initial, posted, received}; 54 55 55 56 t_obs() { 57 _status = initial; 58 56 59 _o.flags = 0; 57 60 _o.StatID[0] = '\0'; … … 73 76 } 74 77 78 ~t_obs() { 79 if (_status == posted) { 80 return; 81 } 82 } 83 75 84 t_obsInternal _o; 85 t_obs_status _status; 76 86 }; 77 87
Note:
See TracChangeset
for help on using the changeset viewer.