source: ntrip/trunk/GnssCenter/map_stations/worldplot.h@ 5425

Last change on this file since 5425 was 5421, checked in by mervart, 11 years ago
File size: 406 bytes
Line 
1#ifndef GnssCenter_WORLDPLOT_H
2#define GnssCenter_WORLDPLOT_H
3
4#include <qwt_plot.h>
5
6class QwtPlotZoomer;
7
8namespace GnssCenter {
9
10class t_worldPlot : public QwtPlot {
11 Q_OBJECT
12 public:
13 t_worldPlot();
14 ~t_worldPlot();
15
16 public slots:
17 void slotNewPoint(const QString& name, double latDeg, double lonDeg);
18 void slotPrint();
19
20 private:
21 QwtPlotZoomer* _zoomer;
22};
23
24} // namespace GnssCenter
25
26#endif
Note: See TracBrowser for help on using the repository browser.