VTK
dox
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
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
:
42
static
vtkTransposeTable
*
New
();
43
vtkTypeMacro(
vtkTransposeTable
,
vtkTableAlgorithm
);
44
void
PrintSelf
(ostream& os,
vtkIndent
indent)
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
:
78
vtkTransposeTable
();
79
~
vtkTransposeTable
()
override
;
80
81
int
RequestData
(
vtkInformation
*,
82
vtkInformationVector
**,
83
vtkInformationVector
*)
override
;
84
85
bool
AddIdColumn
;
86
bool
UseIdColumn
;
87
char
*
IdColumnName
;
88
89
private
:
90
vtkTransposeTable
(
const
vtkTransposeTable
&) =
delete
;
91
void
operator=(
const
vtkTransposeTable
&) =
delete
;
92
};
93
94
#endif
vtkTransposeTable::IdColumnName
char * IdColumnName
Definition:
vtkTransposeTable.h:87
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:41
vtkTransposeTable
Transpose an input table.
Definition:
vtkTransposeTable.h:39
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:39
vtkInformation
Store vtkAlgorithm input/output information.
Definition:
vtkInformation.h:86
vtkTableAlgorithm.h
vtkTransposeTable::AddIdColumn
bool AddIdColumn
Definition:
vtkTransposeTable.h:85
vtkTableAlgorithm::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
vtkTransposeTable::UseIdColumn
bool UseIdColumn
Definition:
vtkTransposeTable.h:86
vtkTableAlgorithm::New
static vtkTableAlgorithm * New()
Generated by
1.8.16