ParaView
vtkPVMergeTables.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPVMergeTables.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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 =========================================================================*/
32 #ifndef vtkPVMergeTables_h
33 #define vtkPVMergeTables_h
34 
35 #include "vtkPVVTKExtensionsRenderingModule.h" // needed for export macro
36 #include "vtkTableAlgorithm.h"
37 
38 class VTKPVVTKEXTENSIONSRENDERING_EXPORT vtkPVMergeTables : public vtkTableAlgorithm
39 {
40 public:
41  static vtkPVMergeTables* New();
42  vtkTypeMacro(vtkPVMergeTables, vtkTableAlgorithm);
43  void PrintSelf(ostream& os, vtkIndent indent);
44 
45 protected:
48 
49  int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*);
50 
51  virtual int FillInputPortInformation(int port, vtkInformation* info);
52  virtual vtkExecutive* CreateDefaultExecutive();
53 
54 private:
55  vtkPVMergeTables(const vtkPVMergeTables&) VTK_DELETE_FUNCTION;
56  void operator=(const vtkPVMergeTables&) VTK_DELETE_FUNCTION;
57 };
58 
59 #endif
used to merge rows in tables.