Changeset 5415 in ntrip for trunk/GnssCenter/map_stations/map_stations.cpp
- Timestamp:
- Sep 10, 2013, 5:13:10 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/map_stations/map_stations.cpp
r5414 r5415 28 28 29 29 #include "map_stations.h" 30 #include "thriftclient.h"31 30 32 31 using namespace std; … … 98 97 99 98 // Thrift Client; 99 // -------------- 100 100 _thriftClient = new t_thriftClient; 101 connect(_thriftClient, SIGNAL(newThriftResult(t_thriftResult)), 102 this, SLOT(slotNewThriftResult(t_thriftResult))); 101 103 _thriftClient->start(); 102 104 } … … 158 160 } 159 161 } 162 } 163 164 // 165 ///////////////////////////////////////////////////////////////////////////// 166 void t_map_stations::slotNewThriftResult(t_thriftResult result) { 167 cout << result._name << ' ' 168 << result._nGPS << ' ' << result._nGLO << ' ' 169 << result._x << ' ' << result._y << ' ' << result._z << endl; 160 170 } 161 171
Note:
See TracChangeset
for help on using the changeset viewer.