VTK  9.3.20240424
vtkTableToTreeFilter.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
19#ifndef vtkTableToTreeFilter_h
20#define vtkTableToTreeFilter_h
21
22#include "vtkInfovisCoreModule.h" // For export macro
23#include "vtkTreeAlgorithm.h"
24
25VTK_ABI_NAMESPACE_BEGIN
26class VTKINFOVISCORE_EXPORT vtkTableToTreeFilter : public vtkTreeAlgorithm
27{
28public:
31 void PrintSelf(ostream& os, vtkIndent indent) override;
32
33protected:
36
38
39 int FillOutputPortInformation(int vtkNotUsed(port), vtkInformation* info) override;
40 int FillInputPortInformation(int vtkNotUsed(port), vtkInformation* info) override;
41
42private:
44 void operator=(const vtkTableToTreeFilter&) = delete;
45};
46
47VTK_ABI_NAMESPACE_END
48#endif
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Filter that converts a vtkTable to a vtkTree.
int FillOutputPortInformation(int vtkNotUsed(port), vtkInformation *info) override
static vtkTableToTreeFilter * New()
int FillInputPortInformation(int vtkNotUsed(port), vtkInformation *info) override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
~vtkTableToTreeFilter() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Superclass for algorithms that produce only Tree as output.