QWT API (中文) 7.0.1
Qt绘图库 - 中文API文档
载入中...
搜索中...
未找到
qwt3d_multiplot.h
1#ifndef qwt3d_multiplot_h
2#define qwt3d_multiplot_h
3
4#include "qwt3d_plot.h"
5
6namespace Qwt3D {
7
21class QWT3D_EXPORT MultiPlot : public Plot3D
22{
23 // Q_OBJECT
24
25public:
26 // Constructor
27 MultiPlot(QWidget *parent = 0, const char *name = 0) { }
28
29protected:
30 virtual void createData() = 0;
31};
32
33} // ns
34
35#endif
组合多个绘图区域的多绘图控件
Definition qwt3d_multiplot.h:22
所有绘图控件的基类
Definition qwt3d_plot.h:31