VTK
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 -------------------------------------------------------------------------*/
41 #ifndef __vtkMergeTables_h
42 #define __vtkMergeTables_h
43 
44 #include "vtkTableAlgorithm.h"
45 
47 {
48 public:
49  static vtkMergeTables* New();
51  void PrintSelf(ostream& os, vtkIndent indent);
52 
54 
56  vtkSetStringMacro(FirstTablePrefix);
57  vtkGetStringMacro(FirstTablePrefix);
59 
61 
63  vtkSetStringMacro(SecondTablePrefix);
64  vtkGetStringMacro(SecondTablePrefix);
66 
68 
71  vtkSetMacro(MergeColumnsByName, bool);
72  vtkGetMacro(MergeColumnsByName, bool);
73  vtkBooleanMacro(MergeColumnsByName, bool);
75 
77 
80  vtkSetMacro(PrefixAllButMerged, bool);
81  vtkGetMacro(PrefixAllButMerged, bool);
82  vtkBooleanMacro(PrefixAllButMerged, bool);
84 
85 protected:
87  ~vtkMergeTables();
88 
93 
94  int RequestData(
98 
99 private:
100  vtkMergeTables(const vtkMergeTables&); // Not implemented
101  void operator=(const vtkMergeTables&); // Not implemented
102 };
103 
104 #endif
105