VTK
9.0.1
Filters
Core
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
36
class
VTKFILTERSCORE_EXPORT
vtkTransposeTable
:
public
vtkTableAlgorithm
37
{
38
public
:
39
static
vtkTransposeTable
*
New
();
40
vtkTypeMacro(
vtkTransposeTable
,
vtkTableAlgorithm
);
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
74
protected
:
75
vtkTransposeTable
();
76
~
vtkTransposeTable
()
override
;
77
78
int
RequestData
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
*)
override
;
79
80
bool
AddIdColumn
;
81
bool
UseIdColumn
;
82
char
*
IdColumnName
;
83
84
private
:
85
vtkTransposeTable
(
const
vtkTransposeTable
&) =
delete
;
86
void
operator=(
const
vtkTransposeTable
&) =
delete
;
87
};
88
89
#endif
vtkTransposeTable::IdColumnName
char * IdColumnName
Definition:
vtkTransposeTable.h:82
vtkTableAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkInformationVector
Store zero or more vtkInformation instances.
Definition:
vtkInformationVector.h:35
vtkTransposeTable
Transpose an input table.
Definition:
vtkTransposeTable.h:36
vtkTableAlgorithm
Superclass for algorithms that produce only vtkTables as output.
Definition:
vtkTableAlgorithm.h:48
vtkIndent
a simple class to control print indentation
Definition:
vtkIndent.h:33
vtkInformation
Store vtkAlgorithm input/output information.
Definition:
vtkInformation.h:73
vtkTableAlgorithm.h
vtkTransposeTable::AddIdColumn
bool AddIdColumn
Definition:
vtkTransposeTable.h:80
vtkTableAlgorithm::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
vtkTransposeTable::UseIdColumn
bool UseIdColumn
Definition:
vtkTransposeTable.h:81
vtkTableAlgorithm::New
static vtkTableAlgorithm * New()
Generated on Thu Jun 24 2021 15:17:26 for VTK by
1.8.17