VTK
dox/Filters/Parallel/vtkPReflectionFilter.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkPReflectionFilter.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 =========================================================================*/
00022 #ifndef __vtkPReflectionFilter_h
00023 #define __vtkPReflectionFilter_h
00024 
00025 #include "vtkFiltersParallelModule.h" // For export macro
00026 #include "vtkReflectionFilter.h"
00027 
00028 class vtkMultiProcessController;
00029 
00030 class VTKFILTERSPARALLEL_EXPORT vtkPReflectionFilter : public vtkReflectionFilter
00031 {
00032 public:
00033   static vtkPReflectionFilter* New();
00034   vtkTypeMacro(vtkPReflectionFilter, vtkReflectionFilter);
00035   void PrintSelf(ostream& os, vtkIndent indent);
00036 
00038 
00039   void SetController(vtkMultiProcessController*);
00040   vtkGetObjectMacro (Controller, vtkMultiProcessController);
00042 
00043 //BTX
00044 protected:
00045   vtkPReflectionFilter();
00046   ~vtkPReflectionFilter();
00047 
00049   virtual int ComputeBounds(vtkDataObject* input, double bounds[6]);
00050 
00051   vtkMultiProcessController* Controller;
00052 private:
00053   vtkPReflectionFilter(const vtkPReflectionFilter&); // Not implemented.
00054   void operator=(const vtkPReflectionFilter&); // Not implemented.
00055 //ETX
00056 };
00057 
00058 #endif
00059 
00060