VTK  9.3.20240423
vtkArrayToTable.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
4
36#ifndef vtkArrayToTable_h
37#define vtkArrayToTable_h
38
39#include "vtkInfovisCoreModule.h" // For export macro
40#include "vtkTableAlgorithm.h"
41
42VTK_ABI_NAMESPACE_BEGIN
43class VTKINFOVISCORE_EXPORT vtkArrayToTable : public vtkTableAlgorithm
44{
45public:
48 void PrintSelf(ostream& os, vtkIndent indent) override;
49
50protected:
52 ~vtkArrayToTable() override;
53
55
57
58private:
59 vtkArrayToTable(const vtkArrayToTable&) = delete;
60 void operator=(const vtkArrayToTable&) = delete;
61};
62
63VTK_ABI_NAMESPACE_END
64#endif
Converts one- and two-dimensional vtkArrayData objects to vtkTable.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkArrayToTable * New()
~vtkArrayToTable() override
int FillInputPortInformation(int, vtkInformation *) override
Fill the input port information objects for this algorithm.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
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.