Changeset 5435 in ntrip for trunk/GnssCenter/map_stations/worldplot.h
- Timestamp:
- Sep 12, 2013, 6:43:22 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/map_stations/worldplot.h
r5421 r5435 5 5 6 6 class QwtPlotZoomer; 7 class QwtPlotMarker; 7 8 8 9 namespace GnssCenter { … … 13 14 t_worldPlot(); 14 15 ~t_worldPlot(); 16 17 class t_point { 18 public: 19 t_point(const QString& name, double latDeg, double lonDeg) { 20 _name = name; 21 _latDeg = latDeg; 22 _lonDeg = lonDeg; 23 } 24 ~t_point() {} 25 QString _name; 26 double _latDeg; 27 double _lonDeg; 28 }; 15 29 16 30 public slots: 17 void slotNewPoint (const QString& name, double latDeg, double lonDeg);31 void slotNewPoints(const QList<t_point*>& points); 18 32 void slotPrint(); 19 33 20 34 private: 21 QwtPlotZoomer* _zoomer; 35 QwtPlotZoomer* _zoomer; 36 QList<QwtPlotMarker*> _markers; 37 22 38 }; 23 39
Note:
See TracChangeset
for help on using the changeset viewer.