source: ntrip/trunk/BNC/src/rinex/dopplot.h@ 4675

Last change on this file since 4675 was 4675, checked in by mervart, 12 years ago
File size: 430 bytes
Line 
1#ifndef DOPPLOT_H
2#define DOPPLOT_H
3
4#include <QtCore>
5#include <qwt_plot.h>
6#include <qwt_symbol.h>
7#include <qwt_plot_curve.h>
8
9class t_obsStat;
10
11class t_dopPlot: public QwtPlot {
12 Q_OBJECT
13
14public:
15 t_dopPlot(QWidget* parent, t_obsStat* obsStat);
16
17private:
18 QwtPlotCurve* addCurve(const QString& name,
19 const QVector<double>& xData,
20 const QVector<double>& yData);
21};
22
23#endif
Note: See TracBrowser for help on using the repository browser.