source: ntrip/trunk/BNC/src/rinex/polarplot.h@ 4309

Last change on this file since 4309 was 4309, checked in by mervart, 12 years ago
File size: 367 bytes
Line 
1
2#ifndef POLARPLOT_H
3#define POLARPLOT_H
4
5#include <qwt_polar_plot.h>
6
7class QwtPolarGrid;
8class QwtPolarCurve;
9
10class t_polarPlot: public QwtPolarPlot {
11 Q_OBJECT
12
13 public:
14 t_polarPlot(QWidget* = 0);
15 ~t_polarPlot();
16
17 public slots:
18
19 private:
20 QwtPolarCurve* createCurve() const;
21 QwtPolarGrid* _grid;
22 QVector<QwtPolarCurve*> _curves;
23};
24
25#endif
26
27
Note: See TracBrowser for help on using the repository browser.