Go to the source code of this file.
|
#define | vtkMakeExportedMappedUnstructuredGrid(_className, _impl, _exportDecl) |
|
#define | vtkMakeExportedMappedUnstructuredGridWithIter(_className, _impl, _cIter, _exportDecl) |
|
#define | vtkMakeMappedUnstructuredGrid(_className, _impl) vtkMakeExportedMappedUnstructuredGrid(_className, _impl, ) |
|
#define | vtkMakeMappedUnstructuredGridWithIter(_className, _impl, _cIter, _exportDecl) vtkMakeExportedMappedUnstructuredGridWithIter(_className, _impl, _cIter, ) |
|
#define vtkMakeExportedMappedUnstructuredGrid |
( |
|
_className, |
|
|
|
_impl, |
|
|
|
_exportDecl |
|
) |
| |
Value:class _exportDecl _className : \
{ \
public: \
vtkTypeMacro(_className, \
static _className*
New(); \
protected: \
_className() \
{ \
_impl *i = _impl::New(); \
this->SetImplementation(i); \
i->Delete(); \
} \
~_className() override {} \
private: \
_className(const _className&); \
void operator=(const _className&); \
};
static vtkDataObject * New()
Allows datasets with arbitrary storage layouts to be used with VTK.
Definition at line 211 of file vtkMappedUnstructuredGrid.h.
#define vtkMakeExportedMappedUnstructuredGridWithIter |
( |
|
_className, |
|
|
|
_impl, |
|
|
|
_cIter, |
|
|
|
_exportDecl |
|
) |
| |
Value:class _exportDecl _className : \
{ \
public: \
vtkTypeMacro(_className, \
static _className*
New(); \
protected: \
_className() \
{ \
_impl *i = _impl::New(); \
this->SetImplementation(i); \
i->Delete(); \
} \
~_className() override {} \
private: \
_className(const _className&); \
void operator=(const _className&); \
};
static vtkDataObject * New()
Allows datasets with arbitrary storage layouts to be used with VTK.
Definition at line 232 of file vtkMappedUnstructuredGrid.h.