VTK
dox/Filters/Parallel/vtkPOutlineFilter.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkPOutlineFilter.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 =========================================================================*/
00026 #ifndef __vtkPOutlineFilter_h
00027 #define __vtkPOutlineFilter_h
00028 
00029 #include "vtkFiltersParallelModule.h" // For export macro
00030 #include "vtkPolyDataAlgorithm.h"
00031 class vtkOutlineSource;
00032 class vtkMultiProcessController;
00033 
00034 class VTKFILTERSPARALLEL_EXPORT vtkPOutlineFilter : public vtkPolyDataAlgorithm
00035 {
00036 public:
00037   static vtkPOutlineFilter *New();
00038   vtkTypeMacro(vtkPOutlineFilter,vtkPolyDataAlgorithm);
00039   void PrintSelf(ostream& os, vtkIndent indent);
00040 
00042 
00043   virtual void SetController(vtkMultiProcessController*);
00044   vtkGetObjectMacro(Controller, vtkMultiProcessController);
00046 
00047 protected:
00048   vtkPOutlineFilter();
00049   ~vtkPOutlineFilter();
00050 
00051   vtkMultiProcessController* Controller;
00052   vtkOutlineSource *OutlineSource;
00053   virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
00054   virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
00055   virtual int FillInputPortInformation(int port, vtkInformation *info);
00056 
00057 private:
00058   vtkPOutlineFilter(const vtkPOutlineFilter&);  // Not implemented.
00059   void operator=(const vtkPOutlineFilter&);  // Not implemented.
00060 };
00061 #endif