QWT API (中文) 7.0.1
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
21class QWT3D_EXPORT GraphPlot : public Plot3D
22{
23 // Q_OBJECT
24
25public:
26 // Constructor
27 GraphPlot(QWidget *parent = 0, const char *name = 0);
28
29protected:
30 virtual void createData() = 0;
31};
32
33} // ns
34
35#endif
图形绘图控件的基类
Definition qwt3d_graphplot.h:22
所有绘图控件的基类
Definition qwt3d_plot.h:31