Index: /trunk/BNC/RTCM/GPSDecoder.h
===================================================================
--- /trunk/BNC/RTCM/GPSDecoder.h	(revision 622)
+++ /trunk/BNC/RTCM/GPSDecoder.h	(revision 623)
@@ -52,6 +52,9 @@
 class t_obs : public QObject{
  public:
+  enum t_obs_status {initial, posted, received};
 
   t_obs() {
+    _status = initial;
+
     _o.flags     = 0;
     _o.StatID[0] = '\0';
@@ -73,5 +76,12 @@
   }
 
+  ~t_obs() {
+    if (_status == posted) {
+      return;
+    }
+  }
+
   t_obsInternal _o;
+  t_obs_status  _status;
 };
 
