dox/Filtering/vtkDataSetToUnstructuredGridFilter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00027
#ifndef __vtkDataSetToUnstructuredGridFilter_h
00028
#define __vtkDataSetToUnstructuredGridFilter_h
00029
00030
#include "vtkUnstructuredGridSource.h"
00031
00032
class vtkDataSet;
00033
00034 class VTK_FILTERING_EXPORT vtkDataSetToUnstructuredGridFilter :
public vtkUnstructuredGridSource
00035 {
00036
public:
00037 vtkTypeRevisionMacro(vtkDataSetToUnstructuredGridFilter,
vtkUnstructuredGridSource);
00038
void PrintSelf(ostream& os,
vtkIndent indent);
00039
00041
00042
virtual void SetInput(
vtkDataSet *input);
00043
vtkDataSet *GetInput();
00045
00046
protected:
00047 vtkDataSetToUnstructuredGridFilter() {this->NumberOfRequiredInputs = 1;};
00048 ~vtkDataSetToUnstructuredGridFilter() {};
00049
00050
private:
00051 vtkDataSetToUnstructuredGridFilter(
const vtkDataSetToUnstructuredGridFilter&);
00052
void operator=(
const vtkDataSetToUnstructuredGridFilter&);
00053 };
00054
00055
#endif
00056
00057