VTK
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 
33 #ifndef vtkTransposeTable_h
34 #define vtkTransposeTable_h
35 
36 #include "vtkFiltersCoreModule.h" // For export macro
37 #include "vtkTableAlgorithm.h"
38 
39 class VTKFILTERSCORE_EXPORT vtkTransposeTable : public vtkTableAlgorithm
40 {
41 public:
44  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
45 
47 
52  vtkGetMacro(AddIdColumn, bool);
53  vtkSetMacro(AddIdColumn, bool);
54  vtkBooleanMacro(AddIdColumn, bool);
56 
58 
63  vtkGetMacro(UseIdColumn, bool);
64  vtkSetMacro(UseIdColumn, bool);
65  vtkBooleanMacro(UseIdColumn, bool);
67 
69 
73  vtkGetStringMacro(IdColumnName);
74  vtkSetStringMacro(IdColumnName);
76 
77 protected:
79  ~vtkTransposeTable() VTK_OVERRIDE;
80 
81  int RequestData(vtkInformation*,
83  vtkInformationVector*) VTK_OVERRIDE;
84 
85  bool AddIdColumn;
86  bool UseIdColumn;
87  char* IdColumnName;
88 
89 private:
90  vtkTransposeTable(const vtkTransposeTable&) VTK_DELETE_FUNCTION;
91  void operator=(const vtkTransposeTable&) VTK_DELETE_FUNCTION;
92 };
93 
94 #endif
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:42
vtkTransposeTable
Transpose an input table.
Definition: vtkTransposeTable.h:40
vtkTransposeTable::~vtkTransposeTable
~vtkTransposeTable() override
vtkTransposeTable::vtkTransposeTable
vtkTransposeTable()
vtkTableAlgorithm
Superclass for algorithms that produce only vtkTables as output.
Definition: vtkTableAlgorithm.h:49
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkTransposeTable::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkGetStringMacro
vtkGetStringMacro(ExtensionsString)
Returns a string listing all available extensions.
vtkTransposeTable::New
static vtkTransposeTable * New()
vtkBooleanMacro
vtkBooleanMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:87
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkTableAlgorithm.h