VTK  9.3.20240418
vtkMergeColumns.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-FileCopyrightText: Copyright 2008 Sandia Corporation
3 // SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
26 #ifndef vtkMergeColumns_h
27 #define vtkMergeColumns_h
28 
29 #include "vtkInfovisCoreModule.h" // For export macro
30 #include "vtkTableAlgorithm.h"
31 
32 VTK_ABI_NAMESPACE_BEGIN
33 class VTKINFOVISCORE_EXPORT vtkMergeColumns : public vtkTableAlgorithm
34 {
35 public:
36  static vtkMergeColumns* New();
38  void PrintSelf(ostream& os, vtkIndent indent) override;
39 
41 
44  vtkSetStringMacro(MergedColumnName);
45  vtkGetStringMacro(MergedColumnName);
47 
48 protected:
50  ~vtkMergeColumns() override;
51 
53 
55 
56 private:
57  vtkMergeColumns(const vtkMergeColumns&) = delete;
58  void operator=(const vtkMergeColumns&) = delete;
59 };
60 
61 VTK_ABI_NAMESPACE_END
62 #endif
a simple class to control print indentation
Definition: vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
merge two columns into a single column
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkMergeColumns * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkMergeColumns() override
Superclass for algorithms that produce only vtkTables as output.