Changeset 5407 in ntrip


Ignore:
Timestamp:
Sep 10, 2013, 3:05:43 PM (11 years ago)
Author:
mervart
Message:
 
Location:
trunk/GnssCenter/map_stations
Files:
2 added
3 edited

Legend:

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

    r5406 r5407  
    2828
    2929#include "map_stations.h"
     30#include "thriftclient.h"
    3031
    3132using namespace std;
  • trunk/GnssCenter/map_stations/map_stations.h

    r5406 r5407  
    88class QwtPlot;
    99class QwtPlotZoomer;
     10class t_thriftClient;
    1011
    1112namespace GnssCenter {
     
    3031
    3132 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;
    4142
     43  t_thriftClient* _thriftClinent;
    4244};
    4345
     
    4749 public:
    4850  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");}
    5052};
    5153
  • trunk/GnssCenter/map_stations/map_stations.pro

    r5406 r5407  
    77DESTDIR              = ../plugins
    88LIBS                 = -L../qwt -lqwt
     9
     10INCLUDEPATH         += /usr/local/include/thrift
     11DEFINES             += HAVE_INTTYPES_H HAVE_NETINET_IN_H
    912
    1013debug:OBJECTS_DIR   = .obj/debug
     
    1922PRE_TARGETDEPS      += gen-cpp
    2023
    21 HEADERS   = map_stations.h
     24HEADERS   = map_stations.h \
     25            thriftclient.h
    2226
    23 SOURCES   = map_stations.cpp
     27SOURCES   = map_stations.cpp \
     28            thriftclient.cpp
    2429
    2530RESOURCES = map_stations.qrc
Note: See TracChangeset for help on using the changeset viewer.