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
8namespace Qwt3D
9{
10
14class QWT3D_EXPORT Mapping
15{
16
17public:
18 // Destructor
19 virtual ~Mapping()
20 {
21 }
22 // Descriptive String
23 virtual QString name() const
24 {
25 return QString("");
26 }
27};
28
29} // ns
30
31#endif // QWT3D_MAPPING_H
Abstract base class for general mappings
Definition qwt3d_mapping.h:15