source: ntrip/branches/BNC_2.12/src/rinex/eleplot.h@ 7983

Last change on this file since 7983 was 6272, checked in by mervart, 9 years ago
File size: 525 bytes
Line 
1#ifndef ELEPLOT_H
2#define ELEPLOT_H
3
4#include <QtCore>
5#include <qwt_plot.h>
6#include <qwt_symbol.h>
7#include <qwt_plot_curve.h>
8#include "t_prn.h"
9#include "reqcanalyze.h"
10
11class t_availData;
12
13class t_elePlot: public QwtPlot {
14 Q_OBJECT
15
16public:
17 t_elePlot(QWidget* parent, const QMap<t_prn, t_plotData>& plotDataMap);
18
19private:
20 QwtPlotCurve* addCurve(const QString& name, const QwtSymbol& symbol,
21 const QVector<double>& xData,
22 const QVector<double>& yData);
23};
24
25#endif
Note: See TracBrowser for help on using the repository browser.