VTK  9.3.0
vtkConvertSelectionDomain.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
25#ifndef vtkConvertSelectionDomain_h
26#define vtkConvertSelectionDomain_h
27
29#include "vtkViewsCoreModule.h" // For export macro
30
31VTK_ABI_NAMESPACE_BEGIN
32class vtkAnnotation;
33
34class VTKVIEWSCORE_EXPORT vtkConvertSelectionDomain : public vtkPassInputTypeAlgorithm
35{
36public:
39 void PrintSelf(ostream& os, vtkIndent indent) override;
40
41protected:
44
46
47 int FillInputPortInformation(int port, vtkInformation* info) override;
48
49 int FillOutputPortInformation(int port, vtkInformation* info) override;
50
51private:
53 void operator=(const vtkConvertSelectionDomain&) = delete;
54};
55
56VTK_ABI_NAMESPACE_END
57#endif
Stores a collection of annotation artifacts.
Convert a selection from one domain to another.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkConvertSelectionDomain() override
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
static vtkConvertSelectionDomain * New()
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce output of the same type as input.