Changeset 5407 in ntrip
- Timestamp:
- Sep 10, 2013, 3:05:43 PM (11 years ago)
- Location:
- trunk/GnssCenter/map_stations
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/map_stations/map_stations.cpp
r5406 r5407 28 28 29 29 #include "map_stations.h" 30 #include "thriftclient.h" 30 31 31 32 using namespace std; -
trunk/GnssCenter/map_stations/map_stations.h
r5406 r5407 8 8 class QwtPlot; 9 9 class QwtPlotZoomer; 10 class t_thriftClient; 10 11 11 12 namespace GnssCenter { … … 30 31 31 32 private: 32 QwtPlot* _mapPlot;33 QwtPlotZoomer* _mapPlotZoomer;34 QPushButton* _buttonClose;35 QPushButton* _buttonPrint;36 QPushButton* _buttonWhatsThis;37 double _minPointLat;38 double _maxPointLat;39 double _minPointLon;40 double _maxPointLon;33 QwtPlot* _mapPlot; 34 QwtPlotZoomer* _mapPlotZoomer; 35 QPushButton* _buttonClose; 36 QPushButton* _buttonPrint; 37 QPushButton* _buttonWhatsThis; 38 double _minPointLat; 39 double _maxPointLat; 40 double _minPointLon; 41 double _maxPointLon; 41 42 43 t_thriftClient* _thriftClinent; 42 44 }; 43 45 … … 47 49 public: 48 50 virtual QWidget* create() {return new t_map_stations();} 49 virtual QString getName() const {return QString("Map ");}51 virtual QString getName() const {return QString("Map of Stations");} 50 52 }; 51 53 -
trunk/GnssCenter/map_stations/map_stations.pro
r5406 r5407 7 7 DESTDIR = ../plugins 8 8 LIBS = -L../qwt -lqwt 9 10 INCLUDEPATH += /usr/local/include/thrift 11 DEFINES += HAVE_INTTYPES_H HAVE_NETINET_IN_H 9 12 10 13 debug:OBJECTS_DIR = .obj/debug … … 19 22 PRE_TARGETDEPS += gen-cpp 20 23 21 HEADERS = map_stations.h 24 HEADERS = map_stations.h \ 25 thriftclient.h 22 26 23 SOURCES = map_stations.cpp 27 SOURCES = map_stations.cpp \ 28 thriftclient.cpp 24 29 25 30 RESOURCES = map_stations.qrc
Note:
See TracChangeset
for help on using the changeset viewer.