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

vtkPVGeometryFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkPVGeometryFilter.h,v $
00005   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00029 #ifndef __vtkPVGeometryFilter_h
00030 #define __vtkPVGeometryFilter_h
00031 
00032 #include "vtkDataSetSurfaceFilter.h"
00033 
00034 class vtkImageData;
00035 class vtkStructuredGrid;
00036 class vtkRectilinearGrid;
00037 class vtkUnstructuredGrid;
00038 
00039 class VTK_PARALLEL_EXPORT vtkPVGeometryFilter : public vtkDataSetSurfaceFilter
00040 {
00041 public:
00042   static vtkPVGeometryFilter *New();
00043   vtkTypeRevisionMacro(vtkPVGeometryFilter,vtkDataSetSurfaceFilter);
00044   void PrintSelf(ostream& os, vtkIndent indent);
00045 
00047 
00049   vtkGetMacro(OutlineFlag, int);
00051 
00052 protected:
00053   vtkPVGeometryFilter();
00054   ~vtkPVGeometryFilter();
00055 
00056   void Execute();
00057   void ImageDataExecute(vtkImageData *input);
00058   void StructuredGridExecute(vtkStructuredGrid *input);
00059   void RectilinearGridExecute(vtkRectilinearGrid *input);
00060   void UnstructuredGridExecute(vtkUnstructuredGrid *input);
00061 
00062   int OutlineFlag;
00063 
00064 private:
00065   vtkPVGeometryFilter(const vtkPVGeometryFilter&); // Not implemented
00066   void operator=(const vtkPVGeometryFilter&); // Not implemented
00067 };
00068 
00069 #endif
00070 
00071