Index: trunk/BNC/RTIGS/rtigs.cpp
===================================================================
--- trunk/BNC/RTIGS/rtigs.cpp	(revision 66)
+++ trunk/BNC/RTIGS/rtigs.cpp	(revision 67)
@@ -47,5 +47,4 @@
     if (xx == 200) {
       _buffer = _buffer.mid(ii);
-      cout << "Message found at " << ii << endl;
       found = true;
       break;
@@ -62,18 +61,16 @@
   unsigned short messType = _GPSTrans.GetRTIGSHdrRecType(p_buf);
   unsigned short numbytes = _GPSTrans.GetRTIGSHdrRecBytes(p_buf);
-  ////  unsigned short statID   = _GPSTrans.GetRTIGSHdrStaID(p_buf);
 
-  cout << "numbytes = " << numbytes << endl;
-
-  // Not enough new data, store it into the internal buffer and return
-  // -----------------------------------------------------------------
+  // Not enough new data, return
+  // ---------------------------
   if (_buffer.size() < numbytes) {
     return;
   }
 
+  // Decode the epoch
+  // ----------------
   if (messType == 200) {
     RTIGSO_T       rtigs_obs;
-    short retval = _GPSTrans.Decode_RTIGS_Obs(p_buf, numbytes , 
-                                              rtigs_obs);
+    short retval = _GPSTrans.Decode_RTIGS_Obs(p_buf, numbytes, rtigs_obs);
     if (retval >= 1) {
       _GPSTrans.print_CMEAS();
Index: trunk/BNC/RTIGS/rtigs.h
===================================================================
--- trunk/BNC/RTIGS/rtigs.h	(revision 66)
+++ trunk/BNC/RTIGS/rtigs.h	(revision 67)
@@ -2,4 +2,6 @@
 #ifndef RTIGS_H
 #define RTIGS_H
+
+#include <QByteArray>
 
 #include "../RTCM/GPSDecoder.h"
@@ -13,4 +15,5 @@
 private:
   CGPS_Transform _GPSTrans;
+  QByteArray     _buffer;
 } ;
 
