VTK  9.3.0
vtkExtractSelectedIds.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
35#ifndef vtkExtractSelectedIds_h
36#define vtkExtractSelectedIds_h
37
38#include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_2_0
40#include "vtkFiltersExtractionModule.h" // For export macro
41
42VTK_ABI_NAMESPACE_BEGIN
43class vtkSelection;
45
46class VTK_DEPRECATED_IN_9_2_0("Use vtkExtractSelection instead of vtkExtractSelectedIds.")
47 VTKFILTERSEXTRACTION_EXPORT vtkExtractSelectedIds : public vtkExtractSelectionBase
48{
49public:
52 void PrintSelf(ostream& os, vtkIndent indent) override;
53
54protected:
57
58 // Overridden to indicate that the input must be a vtkDataSet.
59 int FillInputPortInformation(int port, vtkInformation* info) override;
60
61 // Usual data generation method
63
66
67private:
69 void operator=(const vtkExtractSelectedIds&) = delete;
70};
71
72VTK_ABI_NAMESPACE_END
73#endif
74
75// VTK-HeaderTest-Exclude: vtkExtractSelectedIds.h
abstract class to specify dataset behavior
Definition vtkDataSet.h:53
extract a list of cells from a dataset
~vtkExtractSelectedIds() override
int ExtractCells(vtkSelectionNode *sel, vtkDataSet *input, vtkDataSet *output)
static vtkExtractSelectedIds * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int ExtractPoints(vtkSelectionNode *sel, vtkDataSet *input, vtkDataSet *output)
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
abstract base class for all extract selection filters.
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
a node in a vtkSelection the defines the selection criteria.
data object that represents a "selection" in VTK.
#define VTK_DEPRECATED_IN_9_2_0(reason)