Line | |
---|
1 | #ifndef GnssCenter_WORLDPLOT_H
|
---|
2 | #define GnssCenter_WORLDPLOT_H
|
---|
3 |
|
---|
4 | #include <qwt_plot.h>
|
---|
5 |
|
---|
6 | class QwtPlotZoomer;
|
---|
7 |
|
---|
8 | namespace GnssCenter {
|
---|
9 |
|
---|
10 | class 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.