26 lines
231 B
C++
26 lines
231 B
C++
#ifndef CUSTOMPLOT_H
|
|
#define CUSTOMPLOT_H
|
|
#include "qcustomplot.h"
|
|
|
|
|
|
|
|
class CustomPlot : public QCustomPlot
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CustomPlot();
|
|
~CustomPlot();
|
|
|
|
private:
|
|
|
|
|
|
protected:
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // CUSTOMPLOT_H
|