source: ntrip/trunk/BNC/src/rinex/eleplot.h

Last change on this file was 6272, checked in by mervart, 9 years ago
File size: 525 bytes
RevLine 
[4662]1#ifndef ELEPLOT_H
2#define ELEPLOT_H
[4659]3
4#include <QtCore>
5#include <qwt_plot.h>
6#include <qwt_symbol.h>
7#include <qwt_plot_curve.h>
[6269]8#include "t_prn.h"
[6272]9#include "reqcanalyze.h"
[4659]10
11class t_availData;
12
[4662]13class t_elePlot: public QwtPlot {
[4659]14 Q_OBJECT
15
16public:
[6272]17 t_elePlot(QWidget* parent, const QMap<t_prn, t_plotData>& plotDataMap);
[4659]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.