VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Filters
Generic
vtkGenericProbeFilter.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkGenericProbeFilter.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
=========================================================================*/
44
#ifndef __vtkGenericProbeFilter_h
45
#define __vtkGenericProbeFilter_h
46
47
#include "vtkFiltersGenericModule.h"
// For export macro
48
#include "
vtkDataSetAlgorithm.h
"
49
50
class
vtkIdTypeArray
;
51
class
vtkGenericDataSet
;
52
53
class
VTKFILTERSGENERIC_EXPORT
vtkGenericProbeFilter
:
public
vtkDataSetAlgorithm
54
{
55
public
:
56
static
vtkGenericProbeFilter
*
New
();
57
vtkTypeMacro(
vtkGenericProbeFilter
,
vtkDataSetAlgorithm
);
58
void
PrintSelf
(ostream& os,
vtkIndent
indent);
59
61
63
void
SetSourceData(
vtkGenericDataSet
*
source
);
64
vtkGenericDataSet
*GetSource();
66
68
70
vtkGetObjectMacro(ValidPoints,
vtkIdTypeArray
);
72
73
protected
:
74
vtkGenericProbeFilter
();
75
~
vtkGenericProbeFilter
();
76
77
int
RequestInformation
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
*);
78
int
RequestData
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
*);
79
80
int
FillInputPortInformation
(
int
,
vtkInformation
*);
81
82
vtkIdTypeArray
*
ValidPoints
;
83
84
private
:
85
vtkGenericProbeFilter
(
const
vtkGenericProbeFilter
&);
// Not implemented.
86
void
operator=(
const
vtkGenericProbeFilter
&);
// Not implemented.
87
};
88
89
#endif
Generated on Thu May 24 2012 22:22:21 for VTK by
1.8.1