VTK
dox/Parallel/vtkPTableToStructuredGrid.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkPTableToStructuredGrid.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 =========================================================================*/
00025 #ifndef __vtkPTableToStructuredGrid_h
00026 #define __vtkPTableToStructuredGrid_h
00027 
00028 #include "vtkTableToStructuredGrid.h"
00029 
00030 class vtkMultiProcessController;
00031 
00032 class VTK_PARALLEL_EXPORT vtkPTableToStructuredGrid : public vtkTableToStructuredGrid
00033 {
00034 public:
00035   static vtkPTableToStructuredGrid* New();
00036   vtkTypeMacro(vtkPTableToStructuredGrid, vtkTableToStructuredGrid);
00037   void PrintSelf(ostream& os, vtkIndent indent);
00038 
00040 
00041   void SetController(vtkMultiProcessController*);
00042   vtkGetObjectMacro(Controller, vtkMultiProcessController);
00044 
00045 //BTX
00046 protected:
00047   vtkPTableToStructuredGrid();
00048   ~vtkPTableToStructuredGrid();
00049 
00051 
00052   virtual int RequestData(vtkInformation* request,
00053     vtkInformationVector** inputVector, vtkInformationVector* outputVector);
00055 
00056   vtkMultiProcessController* Controller;
00057 private:
00058   vtkPTableToStructuredGrid(const vtkPTableToStructuredGrid&); // Not implemented.
00059   void operator=(const vtkPTableToStructuredGrid&); // Not implemented.
00060 //ETX
00061 };
00062 
00063 #endif
00064 
00065