VTK  9.3.20240422
vtkExtractSelectedRows.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright 2008 Sandia Corporation
3// SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
16#ifndef vtkExtractSelectedRows_h
17#define vtkExtractSelectedRows_h
18
19#include "vtkFiltersExtractionModule.h" // For export macro
20#include "vtkTableAlgorithm.h"
21
22VTK_ABI_NAMESPACE_BEGIN
23class VTKFILTERSEXTRACTION_EXPORT vtkExtractSelectedRows : public vtkTableAlgorithm
24{
25public:
28 void PrintSelf(ostream& os, vtkIndent indent) override;
29
34
39
43 int FillInputPortInformation(int port, vtkInformation* info) override;
44
46
50 vtkSetMacro(AddOriginalRowIdsArray, bool);
51 vtkGetMacro(AddOriginalRowIdsArray, bool);
52 vtkBooleanMacro(AddOriginalRowIdsArray, bool);
54
55protected:
58
60
62
63private:
65 void operator=(const vtkExtractSelectedRows&) = delete;
66};
67
68VTK_ABI_NAMESPACE_END
69#endif
Proxy object to connect input/output ports.
return selected rows of a table
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkExtractSelectedRows() override
int FillInputPortInformation(int port, vtkInformation *info) override
Specify the first vtkGraph input and the second vtkSelection input.
void SetSelectionConnection(vtkAlgorithmOutput *in)
A convenience method for setting the second input (i.e.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void SetAnnotationLayersConnection(vtkAlgorithmOutput *in)
A convenience method for setting the third input (i.e.
static vtkExtractSelectedRows * New()
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only vtkTables as output.