Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

Filtering/vtkUnstructuredGridToUnstructuredGridFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkUnstructuredGridToUnstructuredGridFilter.h,v $
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   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&);  // Not implemented.
00045   void operator=(const vtkUnstructuredGridToUnstructuredGridFilter&);  // Not implemented.
00046 };
00047 
00048 #endif
00049 
00050