VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Graphics
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
28
class
VTK_GRAPHICS_EXPORT
vtkExtractSelectionBase
:
public
vtkDataObjectAlgorithm
29
{
30
public
:
31
vtkTypeMacro(
vtkExtractSelectionBase
,
vtkDataObjectAlgorithm
);
32
void
PrintSelf
(ostream& os,
vtkIndent
indent);
33
35
37
void
SetSelectionConnection(
vtkAlgorithmOutput
* algOutput)
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
:
55
vtkExtractSelectionBase
();
56
~
vtkExtractSelectionBase
();
57
59
60
virtual
int
RequestDataObject
(
vtkInformation
* request,
61
vtkInformationVector
** inputVector,
62
vtkInformationVector
* outputVector);
64
65
virtual
int
FillInputPortInformation
(
int
port
,
vtkInformation
*
info
);
66
67
int
PreserveTopology
;
68
private
:
69
vtkExtractSelectionBase
(
const
vtkExtractSelectionBase
&);
// Not implemented.
70
void
operator=(
const
vtkExtractSelectionBase
&);
// Not implemented.
71
//ETX
72
};
73
74
#endif
75
76
Generated on Sun Sep 9 2012 13:03:30 for VTK by
1.8.1.2