Ignore:
Timestamp:
Sep 12, 2013, 6:43:22 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GnssCenter/map_stations/worldplot.h

    r5421 r5435  
    55
    66class QwtPlotZoomer;
     7class QwtPlotMarker;
    78
    89namespace GnssCenter {
     
    1314  t_worldPlot();
    1415  ~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  };
    1529
    1630 public slots:
    17   void slotNewPoint(const QString& name, double latDeg, double lonDeg);
     31  void slotNewPoints(const QList<t_point*>& points);
    1832  void slotPrint();
    1933
    2034 private:
    21   QwtPlotZoomer* _zoomer;
     35  QwtPlotZoomer*        _zoomer;
     36  QList<QwtPlotMarker*> _markers;
     37 
    2238};
    2339
Note: See TracChangeset for help on using the changeset viewer.