00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkUnstructuredGridToUnstructuredGridFilter.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 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 vtkTypeMacro(vtkUnstructuredGridToUnstructuredGridFilter,vtkUnstructuredGridSource); 00032 void PrintSelf(ostream& os, vtkIndent indent); 00033 00035 00036 void SetInput(vtkUnstructuredGrid *input); 00037 vtkUnstructuredGrid *GetInput(); 00039 00040 virtual int FillInputPortInformation(int, vtkInformation*); 00041 00042 protected: 00043 vtkUnstructuredGridToUnstructuredGridFilter(); 00044 ~vtkUnstructuredGridToUnstructuredGridFilter(); 00045 private: 00046 vtkUnstructuredGridToUnstructuredGridFilter(const vtkUnstructuredGridToUnstructuredGridFilter&); // Not implemented. 00047 void operator=(const vtkUnstructuredGridToUnstructuredGridFilter&); // Not implemented. 00048 }; 00049 00050 #endif 00051 00052