Index: trunk/GnssCenter/monitor/monitor.cpp
===================================================================
--- trunk/GnssCenter/monitor/monitor.cpp	(revision 5479)
+++ trunk/GnssCenter/monitor/monitor.cpp	(revision 5480)
@@ -148,8 +148,15 @@
 // 
 /////////////////////////////////////////////////////////////////////////////
+void t_monitor::slotMessage(QByteArray msg) {
+
+}
+
+// 
+/////////////////////////////////////////////////////////////////////////////
 void t_monitor::slotStartThrift() {
   if (!_thriftClient) {
     _thriftClient = new t_thriftClient(this, _host, _port.toInt());
     connect(_thriftClient, SIGNAL(finished()), this, SLOT(slotThriftFinished()));
+    connect(_thriftClient, SIGNAL(message(QByteArray)), this, SLOT(slotMessage(QByteArray)));
     _thriftClient->start();
     slotPlotResults();
Index: trunk/GnssCenter/monitor/monitor.h
===================================================================
--- trunk/GnssCenter/monitor/monitor.h	(revision 5479)
+++ trunk/GnssCenter/monitor/monitor.h	(revision 5480)
@@ -29,4 +29,5 @@
   void slotThriftFinished();
   void slotPlotResults();
+  void slotMessage(QByteArray msg);
 
  private:
