QWT API (English) 7.0.1
Qt Widget Library for Technical Applications - English API Documentation
Loading...
Searching...
No Matches
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
Multi-plot widget for combining multiple plot areas.
Definition qwt3d_multiplot.h:22
Base class for all plotting widgets.
Definition qwt3d_plot.h:31