VTK
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 
29 
31 
33 {
34 public:
37  void PrintSelf(ostream& os, vtkIndent indent);
38 
40 
41  void SetController(vtkMultiProcessController*);
42  vtkGetObjectMacro(Controller, vtkMultiProcessController);
44 
45 //BTX
46 protected:
49 
51 
52  virtual int RequestData(vtkInformation* request,
53  vtkInformationVector** inputVector, vtkInformationVector* outputVector);
55 
57 private:
58  vtkPTableToStructuredGrid(const vtkPTableToStructuredGrid&); // Not implemented.
59  void operator=(const vtkPTableToStructuredGrid&); // Not implemented.
60 //ETX
61 };
62 
63 #endif
64 
65