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

Last change on this file since 4302 was 4302, checked in by mervart, 12 years ago
File size: 349 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
16 public slots:
17
18 private:
19 QwtPolarCurve* createCurve() const;
20 QwtPolarGrid* _grid;
21 QVector<QwtPolarCurve*> _curves;
22};
23
24#endif
25
26
Note: See TracBrowser for help on using the repository browser.