QWT API (中文) 7.3.0
Qt绘图库 - 中文API文档
载入中...
搜索中...
未找到
qwt3d_graphplot.h
1#ifndef QWT3D_GRAPHPLOT_H
2#define QWT3D_GRAPHPLOT_H
3
4#include "qwt3d_plot.h"
5
6namespace Qwt3D
7{
8
14class QWT3D_EXPORT GraphPlot : public Plot3D
15{
16public:
17 // Constructor
18 explicit GraphPlot(QWidget* parent = nullptr);
19
20protected:
21 virtual void createData() override = 0;
22};
23
24} // ns
25
26#endif // QWT3D_GRAPHPLOT_H
Base class for graph plotting widgets
Definition qwt3d_graphplot.h:15
Base class for all plotting widgets
Definition qwt3d_plot.h:22