VTK
vtkDataSetGhostGenerator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkDataSetGhostGenerator.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  =========================================================================*/
30 #ifndef VTKDATASETGHOSTGENERATOR_H_
31 #define VTKDATASETGHOSTGENERATOR_H_
32 
33 #include "vtkFiltersGeometryModule.h" // For export macro
35 
36 // Forward Declarations
37 class vtkInformation;
40 
43 {
44 public:
46  void PrintSelf(ostream& os, vtkIndent indent);
47 
49 
50  vtkSetMacro( NumberOfGhostLayers, int );
51  vtkGetMacro( NumberOfGhostLayers, int );
53 
54  // Standard VTK pipeline routines
57 
58  virtual int RequestData(
59  vtkInformation *rqst, vtkInformationVector **inputVector,
60  vtkInformationVector* outputVector );
61 
62 protected:
64  virtual ~vtkDataSetGhostGenerator();
65 
67 
68  virtual void GenerateGhostLayers(
71 
72 
74 
75 private:
76  vtkDataSetGhostGenerator(const vtkDataSetGhostGenerator&); // Not implemented
77  void operator=(const vtkDataSetGhostGenerator&); // Not implemented
78 
79 };
80 
81 #endif /* VTKDATASETGHOSTGENERATOR_H_ */
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
virtual int FillOutputPortInformation(int port, vtkInformation *info)
a simple class to control print indentation
Definition: vtkIndent.h:38
Composite dataset that organizes datasets into blocks.
virtual int FillInputPortInformation(int port, vtkInformation *info)
void PrintSelf(ostream &os, vtkIndent indent)
Store zero or more vtkInformation instances.
#define VTKFILTERSGEOMETRY_EXPORT