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