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 
32 #ifndef vtkTransposeTable_h
33 #define vtkTransposeTable_h
34 
35 #include "vtkFiltersCoreModule.h" // For export macro
36 #include "vtkTableAlgorithm.h"
37 
39 {
40 public:
41  static vtkTransposeTable* New();
43  void PrintSelf(ostream& os, vtkIndent indent);
44 
46 
48  vtkGetMacro(AddIdColumn, bool);
49  vtkSetMacro(AddIdColumn, bool);
50  vtkBooleanMacro(AddIdColumn, bool);
52 
54 
56  vtkGetMacro(UseIdColumn, bool);
57  vtkSetMacro(UseIdColumn, bool);
58  vtkBooleanMacro(UseIdColumn, bool);
60 
62 
64  vtkGetStringMacro(IdColumnName);
65  vtkSetStringMacro(IdColumnName);
67 
68 protected:
71 
75 
78  char* IdColumnName;
79 
80 private:
81  vtkTransposeTable(const vtkTransposeTable&); // Not implemented
82  void operator=(const vtkTransposeTable&); // Not implemented
83 };
84 
85 #endif
void PrintSelf(ostream &os, vtkIndent indent)
static vtkTableAlgorithm * New()
Store vtkAlgorithm input/output information.
#define VTKFILTERSCORE_EXPORT
a simple class to control print indentation
Definition: vtkIndent.h:38
Transpose an input table.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
Superclass for algorithms that produce only vtkTables as output.
Store zero or more vtkInformation instances.