QT5 -- Add Qwt 6.1-multiaxes

This commit is contained in:
Mark Liversedge
2013-12-09 10:02:47 +00:00
parent 03d3afdf53
commit 5abf8776f1
492 changed files with 97336 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#ifndef _PLOT_H_
#define _PLOT_H_ 1
#include <qwt_plot.h>
class QwtPlotCurve;
class QwtSymbol;
class Plot : public QwtPlot
{
Q_OBJECT
public:
Plot( QWidget *parent = NULL );
void setSymbol( QwtSymbol * );
void setSamples( const QVector<QPointF> &samples );
private:
QwtPlotCurve *d_curve;
};
#endif // _PLOT_H_