VTK
/Users/kitware/Dashboards/MyTests/VTK_BLD_Release_docs/Utilities/Doxygen/dox/Filters/ParallelMPI/vtkPExtractVOI.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkPExtractVOI.cxx
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 =========================================================================*/
00030 #ifndef vtkPExtractVOI_h
00031 #define vtkPExtractVOI_h
00032 
00033 #include "vtkFiltersParallelMPIModule.h" // For export macro
00034 #include "vtkExtractVOI.h"
00035 
00036 // Forward Declarations
00037 class vtkInformation;
00038 class vtkInformationVector;
00039 class vtkMPIController;
00040 
00041 class VTKFILTERSPARALLELMPI_EXPORT vtkPExtractVOI : public vtkExtractVOI
00042 {
00043 public:
00044   static vtkPExtractVOI* New();
00045   vtkTypeMacro(vtkPExtractVOI,vtkExtractVOI);
00046   void PrintSelf(ostream& os, vtkIndent indent);
00047 
00048 protected:
00049   vtkPExtractVOI();
00050   virtual ~vtkPExtractVOI();
00051 
00052   // Standard VTK Pipeline methods
00053   virtual int RequestData(
00054       vtkInformation*, vtkInformationVector**,vtkInformationVector*);
00055   virtual int RequestInformation(
00056       vtkInformation*, vtkInformationVector**, vtkInformationVector*);
00057   virtual int RequestUpdateExtent(
00058       vtkInformation*, vtkInformationVector**, vtkInformationVector*);
00059 
00060   vtkMPIController* Controller;
00061 
00062 private:
00063   vtkPExtractVOI(const vtkPExtractVOI&); // Not implemented.
00064   void operator=(const vtkPExtractVOI&); // Not implemented.
00065 };
00066 
00067 #endif