source: pacpusframework/branches/2.0-beta1/include/extlib/qwtplot3d/qwt3d_mapping.h@ 89

Last change on this file since 89 was 89, checked in by morasjul, 11 years ago

PACPUS 2.0 Beta deployed in new branch

Major changes:
-Add communication interface between components
-Add examples for communications interface (TestComponents)
-Move to Qt5 support

  • Property svn:executable set to *
File size: 497 bytes
Line 
1#ifndef qwt3d_mapping_h__2004_03_05_13_51_begin_guarded_code
2#define qwt3d_mapping_h__2004_03_05_13_51_begin_guarded_code
3
4#include <qstring.h>
5#include "qwt3d_global.h"
6#include "qwt3d_types.h"
7
8namespace Qwt3D
9{
10
11//! Abstract base class for general mappings
12/**
13
14*/
15class QWT3D_EXPORT Mapping
16{
17
18public:
19
20 virtual ~Mapping(){} //!< Destructor.
21 virtual QString name() const { return QString(""); } //!< Descriptive String.
22};
23
24
25} // ns
26
27#endif /* include guarded */
Note: See TracBrowser for help on using the repository browser.