VTK  9.2.6
vtkMergeTables.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkMergeTables.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/*-------------------------------------------------------------------------
16 Copyright 2008 Sandia Corporation.
17 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18 the U.S. Government retains certain rights in this software.
19-------------------------------------------------------------------------*/
42#ifndef vtkMergeTables_h
43#define vtkMergeTables_h
44
45#include "vtkInfovisCoreModule.h" // For export macro
46#include "vtkTableAlgorithm.h"
47
48class VTKINFOVISCORE_EXPORT vtkMergeTables : public vtkTableAlgorithm
49{
50public:
53 void PrintSelf(ostream& os, vtkIndent indent) override;
54
56
60 vtkSetStringMacro(FirstTablePrefix);
61 vtkGetStringMacro(FirstTablePrefix);
63
65
69 vtkSetStringMacro(SecondTablePrefix);
70 vtkGetStringMacro(SecondTablePrefix);
72
74
80 vtkSetMacro(MergeColumnsByName, bool);
81 vtkGetMacro(MergeColumnsByName, bool);
82 vtkBooleanMacro(MergeColumnsByName, bool);
84
86
91 vtkSetMacro(PrefixAllButMerged, bool);
92 vtkGetMacro(PrefixAllButMerged, bool);
93 vtkBooleanMacro(PrefixAllButMerged, bool);
95
96protected:
98 ~vtkMergeTables() override;
99
104
106
107private:
108 vtkMergeTables(const vtkMergeTables&) = delete;
109 void operator=(const vtkMergeTables&) = delete;
110};
111
112#endif
a simple class to control print indentation
Definition: vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
combine two tables
~vtkMergeTables() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
char * FirstTablePrefix
static vtkMergeTables * New()
char * SecondTablePrefix
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
Superclass for algorithms that produce only vtkTables as output.