#ifndef GnssCenter_WORLDPLOT_H #define GnssCenter_WORLDPLOT_H #include class QwtPlotZoomer; class QwtPlotMarker; namespace GnssCenter { class t_worldPlot : public QwtPlot { Q_OBJECT public: t_worldPlot(); ~t_worldPlot(); class t_point { public: t_point(const QString& name, double latDeg, double lonDeg) { _name = name; _latDeg = latDeg; _lonDeg = lonDeg; } ~t_point() {} QString _name; double _latDeg; double _lonDeg; }; public slots: void slotNewPoints(const QList& points); void slotPrint(); private: QwtPlotZoomer* _zoomer; QList _markers; }; } // namespace GnssCenter #endif