Changeset 5410 in ntrip
- Timestamp:
- Sep 10, 2013, 3:39:33 PM (11 years ago)
- Location:
- trunk/GnssCenter
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/main/mainwin.cpp
r5118 r5410 43 43 44 44 foreach (QString fileName, pluginsDir.entryList(QDir::Files)) { 45 qDebug() << pluginsDir.absoluteFilePath(fileName); 45 46 QPluginLoader loader(pluginsDir.absoluteFilePath(fileName)); 47 qDebug() << loader.errorString(); 46 48 QObject* object = loader.instance(); 49 qDebug() << object; 50 qDebug() << loader.errorString(); 47 51 if (object) { 48 52 t_pluginFactoryInterface* plugin = qobject_cast<t_pluginFactoryInterface*>(object); -
trunk/GnssCenter/map_stations/map_stations.cpp
r5407 r5410 96 96 // --------- 97 97 _mapPlot->replot(); 98 99 // Thrift Client; 100 _thriftClient = new t_thriftClient; 101 _thriftClient->start(); 98 102 } 99 103 -
trunk/GnssCenter/map_stations/map_stations.h
r5407 r5410 41 41 double _maxPointLon; 42 42 43 t_thriftClient* _thriftCli nent;43 t_thriftClient* _thriftClient; 44 44 }; 45 45 -
trunk/GnssCenter/map_stations/map_stations.pro
r5407 r5410 19 19 thrift.commands = "thrift -r -gen cpp rtnet.thrift" 20 20 thrift.depends = rtnet.thrift rtnet_data.thrift 21 21 22 QMAKE_EXTRA_TARGETS += thrift 22 23 PRE_TARGETDEPS += gen-cpp 24 LIBS += -lthrift 23 25 24 26 HEADERS = map_stations.h \ … … 26 28 27 29 SOURCES = map_stations.cpp \ 28 thriftclient.cpp 30 thriftclient.cpp \ 31 gen-cpp/RtnetData.cpp \ 32 gen-cpp/rtnet_constants.cpp gen-cpp/rtnet_types.cpp \ 33 gen-cpp/rtnet_data_constants.cpp gen-cpp/rtnet_data_types.cpp 34 29 35 30 36 RESOURCES = map_stations.qrc -
trunk/GnssCenter/map_stations/thriftclient.h
r5409 r5410 16 16 // Handler Class Definition 17 17 ////////////////////////////////////////////////////////////////////////////// 18 class t_thriftClient : public com::gpssolutions::rtnet::RtnetDataIf, QThread {18 class t_thriftClient : public com::gpssolutions::rtnet::RtnetDataIf, public QThread { 19 19 public: 20 20 t_thriftClient();
Note:
See TracChangeset
for help on using the changeset viewer.