Index: /trunk/GnssCenter/main/mainwin.cpp
===================================================================
--- /trunk/GnssCenter/main/mainwin.cpp	(revision 5409)
+++ /trunk/GnssCenter/main/mainwin.cpp	(revision 5410)
@@ -43,6 +43,10 @@
 
   foreach (QString fileName, pluginsDir.entryList(QDir::Files)) {
+    qDebug() << pluginsDir.absoluteFilePath(fileName);
     QPluginLoader loader(pluginsDir.absoluteFilePath(fileName));
+    qDebug() << loader.errorString();
     QObject* object = loader.instance();
+    qDebug() << object;
+    qDebug() << loader.errorString();
     if (object) {
       t_pluginFactoryInterface* plugin = qobject_cast<t_pluginFactoryInterface*>(object);
Index: /trunk/GnssCenter/map_stations/map_stations.cpp
===================================================================
--- /trunk/GnssCenter/map_stations/map_stations.cpp	(revision 5409)
+++ /trunk/GnssCenter/map_stations/map_stations.cpp	(revision 5410)
@@ -96,4 +96,8 @@
   // ---------
   _mapPlot->replot();
+
+  // Thrift Client;
+  _thriftClient = new t_thriftClient;
+  _thriftClient->start();
 }
 
Index: /trunk/GnssCenter/map_stations/map_stations.h
===================================================================
--- /trunk/GnssCenter/map_stations/map_stations.h	(revision 5409)
+++ /trunk/GnssCenter/map_stations/map_stations.h	(revision 5410)
@@ -41,5 +41,5 @@
   double          _maxPointLon;
 
-  t_thriftClient* _thriftClinent;
+  t_thriftClient* _thriftClient;
 };
 
Index: /trunk/GnssCenter/map_stations/map_stations.pro
===================================================================
--- /trunk/GnssCenter/map_stations/map_stations.pro	(revision 5409)
+++ /trunk/GnssCenter/map_stations/map_stations.pro	(revision 5410)
@@ -19,6 +19,8 @@
 thrift.commands = "thrift -r -gen cpp rtnet.thrift"
 thrift.depends  = rtnet.thrift rtnet_data.thrift
+
 QMAKE_EXTRA_TARGETS += thrift
 PRE_TARGETDEPS      += gen-cpp
+LIBS                += -lthrift
 
 HEADERS   = map_stations.h \
@@ -26,5 +28,9 @@
 
 SOURCES   = map_stations.cpp \
-            thriftclient.cpp
+            thriftclient.cpp \
+            gen-cpp/RtnetData.cpp \
+            gen-cpp/rtnet_constants.cpp gen-cpp/rtnet_types.cpp \
+            gen-cpp/rtnet_data_constants.cpp gen-cpp/rtnet_data_types.cpp
+
 
 RESOURCES = map_stations.qrc
Index: /trunk/GnssCenter/map_stations/thriftclient.h
===================================================================
--- /trunk/GnssCenter/map_stations/thriftclient.h	(revision 5409)
+++ /trunk/GnssCenter/map_stations/thriftclient.h	(revision 5410)
@@ -16,5 +16,5 @@
 // Handler Class Definition
 //////////////////////////////////////////////////////////////////////////////
-class t_thriftClient : public com::gpssolutions::rtnet::RtnetDataIf, QThread {
+class t_thriftClient : public com::gpssolutions::rtnet::RtnetDataIf, public QThread {
  public:
   t_thriftClient();
