vtkUnstructuredGridToUnstructuredGridFilter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00036 #ifndef __vtkUnstructuredGridToUnstructuredGridFilter_h
00037 #define __vtkUnstructuredGridToUnstructuredGridFilter_h
00038
00039 #include "vtkUnstructuredGridSource.h"
00040
00041 class VTK_FILTERING_EXPORT vtkUnstructuredGridToUnstructuredGridFilter : public vtkUnstructuredGridSource
00042 {
00043 public:
00044 vtkTypeRevisionMacro(vtkUnstructuredGridToUnstructuredGridFilter,vtkUnstructuredGridSource);
00045 void PrintSelf(ostream& os, vtkIndent indent);
00046
00048
00049 void SetInput(vtkUnstructuredGrid *input);
00050 vtkUnstructuredGrid *GetInput();
00052
00053 virtual int FillInputPortInformation(int, vtkInformation*);
00054
00055 protected:
00056 vtkUnstructuredGridToUnstructuredGridFilter();
00057 ~vtkUnstructuredGridToUnstructuredGridFilter();
00058 private:
00059 vtkUnstructuredGridToUnstructuredGridFilter(const vtkUnstructuredGridToUnstructuredGridFilter&);
00060 void operator=(const vtkUnstructuredGridToUnstructuredGridFilter&);
00061 };
00062
00063 #endif
00064
00065