26 lines
413 B
C
26 lines
413 B
C
|
#ifndef QCUSTPLOT_H
|
||
|
#define QCUSTPLOT_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include "lib/qcustomplot.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class QCustPlot;
|
||
|
}
|
||
|
|
||
|
class QCustPlot : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit QCustPlot(QVector<double> xData, QVector<double> yData, int jd, bool isNub, bool isTime,
|
||
|
QWidget *parent = nullptr);
|
||
|
~QCustPlot();
|
||
|
|
||
|
private:
|
||
|
Ui::QCustPlot *ui;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // QCUSTPLOT_H
|