VTK
vtkMultiBlockDataGroupFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMultiBlockDataGroupFilter.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 =========================================================================*/
32 #ifndef vtkMultiBlockDataGroupFilter_h
33 #define vtkMultiBlockDataGroupFilter_h
34 
35 #include "vtkFiltersGeneralModule.h" // For export macro
37 
38 class VTKFILTERSGENERAL_EXPORT vtkMultiBlockDataGroupFilter : public vtkMultiBlockDataSetAlgorithm
39 {
40 public:
42  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
43 
49 
51 
56  void AddInputData(vtkDataObject *);
57  void AddInputData(int, vtkDataObject*);
59 
60 protected:
62  ~vtkMultiBlockDataGroupFilter() VTK_OVERRIDE;
63 
64  int RequestInformation(vtkInformation *,
66  vtkInformationVector *) VTK_OVERRIDE;
67  int RequestUpdateExtent(vtkInformation *,
68  vtkInformationVector **,
69  vtkInformationVector *) VTK_OVERRIDE;
70  int RequestData(vtkInformation *,
71  vtkInformationVector **,
72  vtkInformationVector *) VTK_OVERRIDE;
73 
74  int FillInputPortInformation(int port, vtkInformation *info) VTK_OVERRIDE;
75 
76 private:
78  void operator=(const vtkMultiBlockDataGroupFilter&) VTK_DELETE_FUNCTION;
79 };
80 
81 #endif
82 
83 
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
static vtkMultiBlockDataSetAlgorithm * New()
collects multiple inputs into one multi-group dataset
a simple class to control print indentation
Definition: vtkIndent.h:39
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Store zero or more vtkInformation instances.
general representation of visualization data
Definition: vtkDataObject.h:64