更改为QCustplot
This commit is contained in:
25
qcustplot.h
Normal file
25
qcustplot.h
Normal file
@ -0,0 +1,25 @@
|
||||
#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
|
Reference in New Issue
Block a user