You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
497 B
28 lines
497 B
#ifndef qwt3d_mapping_h__2004_03_05_13_51_begin_guarded_code
|
|
#define qwt3d_mapping_h__2004_03_05_13_51_begin_guarded_code
|
|
|
|
#include <qstring.h>
|
|
#include "qwt3d_global.h"
|
|
#include "qwt3d_types.h"
|
|
|
|
namespace Qwt3D
|
|
{
|
|
|
|
//! Abstract base class for general mappings
|
|
/**
|
|
|
|
*/
|
|
class QWT3D_EXPORT Mapping
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~Mapping(){} //!< Destructor.
|
|
virtual QString name() const { return QString(""); } //!< Descriptive String.
|
|
};
|
|
|
|
|
|
} // ns
|
|
|
|
#endif /* include guarded */
|