VTK
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 "vtkDataSetAlgorithm.h"
48 
49 class vtkIdTypeArray;
50 class vtkGenericDataSet;
51 
53 {
54 public:
55  static vtkGenericProbeFilter *New();
57  void PrintSelf(ostream& os, vtkIndent indent);
58 
60 
62  void SetSource(vtkGenericDataSet *source);
63  vtkGenericDataSet *GetSource();
65 
67 
69  vtkGetObjectMacro(ValidPoints, vtkIdTypeArray);
71 
72 protected:
75 
77 
79 
81 
82 private:
83  vtkGenericProbeFilter(const vtkGenericProbeFilter&); // Not implemented.
84  void operator=(const vtkGenericProbeFilter&); // Not implemented.
85 };
86 
87 #endif