VTK  9.1.0
vtkTransposeTable.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkTransposeTable.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
15
30#ifndef vtkTransposeTable_h
31#define vtkTransposeTable_h
32
33#include "vtkFiltersCoreModule.h" // For export macro
34#include "vtkTableAlgorithm.h"
35
36class VTKFILTERSCORE_EXPORT vtkTransposeTable : public vtkTableAlgorithm
37{
38public:
41 void PrintSelf(ostream& os, vtkIndent indent) override;
42
44
49 vtkGetMacro(AddIdColumn, bool);
50 vtkSetMacro(AddIdColumn, bool);
51 vtkBooleanMacro(AddIdColumn, bool);
53
55
60 vtkGetMacro(UseIdColumn, bool);
61 vtkSetMacro(UseIdColumn, bool);
62 vtkBooleanMacro(UseIdColumn, bool);
64
66
70 vtkGetStringMacro(IdColumnName);
71 vtkSetStringMacro(IdColumnName);
73
74protected:
77
79
83
84private:
85 vtkTransposeTable(const vtkTransposeTable&) = delete;
86 void operator=(const vtkTransposeTable&) = delete;
87};
88
89#endif
a simple class to control print indentation
Definition: vtkIndent.h:113
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