VTK  9.3.1
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 
17 #ifndef vtkArrayToTable_h
18 #define vtkArrayToTable_h
19 
20 #include "vtkInfovisCoreModule.h" // For export macro
21 #include "vtkTableAlgorithm.h"
22 
23 VTK_ABI_NAMESPACE_BEGIN
24 class VTKINFOVISCORE_EXPORT vtkArrayToTable : public vtkTableAlgorithm
25 {
26 public:
27  static vtkArrayToTable* New();
29  void PrintSelf(ostream& os, vtkIndent indent) override;
30 
31 protected:
33  ~vtkArrayToTable() override;
34 
35  int FillInputPortInformation(int, vtkInformation*) override;
36 
38 
39 private:
40  vtkArrayToTable(const vtkArrayToTable&) = delete;
41  void operator=(const vtkArrayToTable&) = delete;
42 };
43 
44 VTK_ABI_NAMESPACE_END
45 #endif
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkTableAlgorithm * New()
Store vtkAlgorithm input/output information.
Converts one- and two-dimensional vtkArrayData objects to vtkTable.
a simple class to control print indentation
Definition: vtkIndent.h:28
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
Superclass for algorithms that produce only vtkTables as output.
Store zero or more vtkInformation instances.