dox/Filtering/vtkUnstructuredGridToUnstructuredGridFilter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00023
#ifndef __vtkUnstructuredGridToUnstructuredGridFilter_h
00024
#define __vtkUnstructuredGridToUnstructuredGridFilter_h
00025
00026
#include "vtkUnstructuredGridSource.h"
00027
00028 class VTK_FILTERING_EXPORT vtkUnstructuredGridToUnstructuredGridFilter :
public vtkUnstructuredGridSource
00029 {
00030
public:
00031 vtkTypeRevisionMacro(vtkUnstructuredGridToUnstructuredGridFilter,
vtkUnstructuredGridSource);
00032
void PrintSelf(ostream& os,
vtkIndent indent);
00033
00035
00036
void SetInput(
vtkUnstructuredGrid *input);
00037
vtkUnstructuredGrid *GetInput();
00039
00040
protected:
00041 vtkUnstructuredGridToUnstructuredGridFilter() {this->NumberOfRequiredInputs = 1;};
00042 ~vtkUnstructuredGridToUnstructuredGridFilter() {};
00043
private:
00044 vtkUnstructuredGridToUnstructuredGridFilter(
const vtkUnstructuredGridToUnstructuredGridFilter&);
00045
void operator=(
const vtkUnstructuredGridToUnstructuredGridFilter&);
00046 };
00047
00048
#endif
00049
00050