VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
vtkPTableToStructuredGrid.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPTableToStructuredGrid.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
25 #ifndef __vtkPTableToStructuredGrid_h
26 #define __vtkPTableToStructuredGrid_h
27 
28 #include "vtkFiltersParallelModule.h" // For export macro
30 
31 class vtkMultiProcessController;
32 
33 class VTKFILTERSPARALLEL_EXPORT vtkPTableToStructuredGrid : public vtkTableToStructuredGrid
34 {
35 public:
38  void PrintSelf(ostream& os, vtkIndent indent);
39 
41 
42  void SetController(vtkMultiProcessController*);
43  vtkGetObjectMacro(Controller, vtkMultiProcessController);
45 
46 //BTX
47 protected:
50 
52 
53  virtual int RequestData(vtkInformation* request,
54  vtkInformationVector** inputVector, vtkInformationVector* outputVector);
56 
57  vtkMultiProcessController* Controller;
58 private:
59  vtkPTableToStructuredGrid(const vtkPTableToStructuredGrid&); // Not implemented.
60  void operator=(const vtkPTableToStructuredGrid&); // Not implemented.
61 //ETX
62 };
63 
64 #endif
65 
66 
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
static vtkTableToStructuredGrid * New()
void PrintSelf(ostream &os, vtkIndent indent)
vtkMultiProcessController * Controller
converts vtkTable to a vtkStructuredGrid.
vtkTableToStructuredGrid specialization which handles distribution of the input table.