Changeset 623 in ntrip


Ignore:
Timestamp:
Dec 16, 2007, 4:49:33 PM (16 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM/GPSDecoder.h

    r622 r623  
    5252class t_obs : public QObject{
    5353 public:
     54  enum t_obs_status {initial, posted, received};
    5455
    5556  t_obs() {
     57    _status = initial;
     58
    5659    _o.flags     = 0;
    5760    _o.StatID[0] = '\0';
     
    7376  }
    7477
     78  ~t_obs() {
     79    if (_status == posted) {
     80      return;
     81    }
     82  }
     83
    7584  t_obsInternal _o;
     85  t_obs_status  _status;
    7686};
    7787
Note: See TracChangeset for help on using the changeset viewer.