VTK
vtkExtractSelectionBase.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractSelectionBase.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 =========================================================================*/
23 #ifndef __vtkExtractSelectionBase_h
24 #define __vtkExtractSelectionBase_h
25 
26 #include "vtkDataObjectAlgorithm.h"
27 
29 {
30 public:
32  void PrintSelf(ostream& os, vtkIndent indent);
33 
35 
38  {
39  this->SetInputConnection(1, algOutput);
40  }
42 
44 
48  vtkSetMacro(PreserveTopology, int);
49  vtkGetMacro(PreserveTopology, int);
50  vtkBooleanMacro(PreserveTopology, int);
52 
53 //BTX
54 protected:
57 
59 
60  virtual int RequestDataObject(vtkInformation* request,
61  vtkInformationVector** inputVector,
62  vtkInformationVector* outputVector);
64 
66 
68 private:
69  vtkExtractSelectionBase(const vtkExtractSelectionBase&); // Not implemented.
70  void operator=(const vtkExtractSelectionBase&); // Not implemented.
71 //ETX
72 };
73 
74 #endif
75 
76