Files
ResInsight/ThirdParty/Qwt/playground/curvetracker/plot.h
Magne Sjaastad ecf5a67074 System : Upgrade to Qwt 6.1.4
Avoid use of deprecated Qt functions like QString::null
2019-09-13 10:07:49 +02:00

22 lines
268 B
C++

#ifndef _PLOT_H_
#define _PLOT_H_
#include <qwt_plot.h>
class QPolygonF;
class Plot: public QwtPlot
{
Q_OBJECT
public:
Plot( QWidget * = NULL );
private:
void insertCurve( const QString &title,
const QColor &, const QPolygonF & );
};
#endif