VTK
vtkCompositeDataGeometryFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCompositeDataGeometryFilter.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 __vtkCompositeDataGeometryFilter_h
31 #define __vtkCompositeDataGeometryFilter_h
32 
33 #include "vtkPolyDataAlgorithm.h"
34 
35 class vtkPolyData;
36 
38 {
39 public:
42  void PrintSelf(ostream& os, vtkIndent indent);
43 
45 
46  virtual int ProcessRequest(vtkInformation* request,
47  vtkInformationVector** inputVector,
48  vtkInformationVector* outputVector);
50 
51 protected:
54 
56 
57  // Create a default executive.
59 
60  virtual int RequestCompositeData(vtkInformation*,
63 
64 private:
66  void operator=(const vtkCompositeDataGeometryFilter&); // Not implemented.
67 };
68 
69 #endif
70 
71