#ifndef ELEPLOT_H #define ELEPLOT_H #include <QtCore> #include <qwt_plot.h> #include <qwt_symbol.h> #include <qwt_plot_curve.h> class t_availData; class t_elePlot: public QwtPlot { Q_OBJECT public: t_elePlot(QWidget* parent, QMap<QString, t_availData>* availDataMap); private: QwtPlotCurve* addCurve(const QString& name, const QwtSymbol& symbol, const QVector<double>& xData, const QVector<double>& yData); }; #endif