Changeset 4321 in ntrip for trunk/BNC/src/rinex/polarplot.h


Ignore:
Timestamp:
Jun 23, 2012, 4:44:17 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/polarplot.h

    r4320 r4321  
    1010class t_polarCurve : public QwtPolarCurve {
    1111 public:
    12   t_polarCurve();
    13   virtual ~t_polarCurve();
     12  t_polarCurve() {}
     13  virtual ~t_polarCurve() {}
    1414 protected:
    1515   virtual void drawSymbols (QPainter* painter, const QwtSymbol& symbol,
     
    3232class t_polarData: public QwtSeriesData<t_polarPoint> {
    3333 public:
    34   t_polarData(size_t size);
     34  t_polarData(size_t size) {
     35    _size = size;
     36  }
    3537  virtual t_polarPoint sample(size_t ii) const;
    3638  virtual size_t size() const {return _size;}
    37   virtual QRectF boundingRect() const;
     39  virtual QRectF boundingRect() const {
     40    return d_boundingRect;
     41  }
    3842 protected:
    39   QwtInterval _zenithInterval;
    40   QwtInterval _azimuthInterval;
    4143  size_t      _size;
    4244};
     
    4951 public:
    5052  t_polarPlot(QWidget* = 0);
    51   ~t_polarPlot();
    52 
    53  public slots:
    5453
    5554 private:
Note: See TracChangeset for help on using the changeset viewer.