You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
#ifndef QTPCUSTOMPLOT_H
|
|
|
|
|
|
#define QTPCUSTOMPLOT_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <qcustomplot/qcustomplot.h>
|
|
|
|
|
|
|
|
|
|
|
|
class QTpCustomPlot : public QCustomPlot
|
|
|
|
|
|
{
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
QTpCustomPlot(QWidget *parent = NULL);
|
|
|
|
|
|
virtual ~QTpCustomPlot();
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // QTPCUSTOMPLOT_H
|