QWT API (中文) 7.3.0
Qt绘图库 - 中文API文档
载入中...
搜索中...
未找到
qwt3d_mapping.h
1#ifndef QWT3D_MAPPING_H
2#define QWT3D_MAPPING_H
3
4#include <qstring.h>
5#include "qwt3d_global.h"
6#include "qwt3d_types.h"
7
8
9
13class QWT3D_EXPORT Qwt3DMapping
14{
15
16public:
17 // Destructor
18 virtual ~Qwt3DMapping()
19 {
20 }
21 // Descriptive String
22 virtual QString name() const
23 {
24 return QString("");
25 }
26};
27
28
29#endif // QWT3D_MAPPING_H
Abstract base class for general mappings
Definition qwt3d_mapping.h:14