Files
ReadLog/qcustplot.h
2024-09-13 17:06:01 +08:00

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