VTK  9.3.0
vtkTransposeTable.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
3 
21 #ifndef vtkTransposeTable_h
22 #define vtkTransposeTable_h
23 
24 #include "vtkFiltersCoreModule.h" // For export macro
25 #include "vtkTableAlgorithm.h"
26 
27 VTK_ABI_NAMESPACE_BEGIN
28 class VTKFILTERSCORE_EXPORT vtkTransposeTable : public vtkTableAlgorithm
29 {
30 public:
33  void PrintSelf(ostream& os, vtkIndent indent) override;
34 
36 
41  vtkGetMacro(AddIdColumn, bool);
42  vtkSetMacro(AddIdColumn, bool);
43  vtkBooleanMacro(AddIdColumn, bool);
45 
47 
52  vtkGetMacro(UseIdColumn, bool);
53  vtkSetMacro(UseIdColumn, bool);
54  vtkBooleanMacro(UseIdColumn, bool);
56 
58 
62  vtkGetStringMacro(IdColumnName);
63  vtkSetStringMacro(IdColumnName);
65 
66 protected:
68  ~vtkTransposeTable() override;
69 
71 
74  char* IdColumnName;
75 
76 private:
77  vtkTransposeTable(const vtkTransposeTable&) = delete;
78  void operator=(const vtkTransposeTable&) = delete;
79 };
80 
81 VTK_ABI_NAMESPACE_END
82 #endif
a simple class to control print indentation
Definition: vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only vtkTables as output.
Transpose an input table.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkTransposeTable * New()
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
~vtkTransposeTable() override