Ignore:
Timestamp:
Sep 10, 2013, 5:13:10 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GnssCenter/map_stations/map_stations.cpp

    r5414 r5415  
    2828
    2929#include "map_stations.h"
    30 #include "thriftclient.h"
    3130
    3231using namespace std;
     
    9897
    9998  // Thrift Client;
     99  // --------------
    100100  _thriftClient = new t_thriftClient;
     101  connect(_thriftClient, SIGNAL(newThriftResult(t_thriftResult)),
     102          this, SLOT(slotNewThriftResult(t_thriftResult)));
    101103  _thriftClient->start();
    102104}
     
    158160    }
    159161  }
     162}
     163
     164//
     165/////////////////////////////////////////////////////////////////////////////
     166void t_map_stations::slotNewThriftResult(t_thriftResult result) {
     167  cout << result._name << ' '
     168       << result._nGPS << ' ' << result._nGLO << ' '
     169       << result._x << ' ' << result._y << ' ' << result._z << endl;
    160170}
    161171
Note: See TracChangeset for help on using the changeset viewer.