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 =========================================================================*/
26 #ifndef vtkMultiBlockDataGroupFilter_h
27 #define vtkMultiBlockDataGroupFilter_h
28 
29 #include "vtkFiltersGeneralModule.h" // For export macro
31 
32 class VTKFILTERSGENERAL_EXPORT vtkMultiBlockDataGroupFilter : public vtkMultiBlockDataSetAlgorithm
33 {
34 public:
36  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
37 
43 
45 
50  void AddInputData(vtkDataObject *);
51  void AddInputData(int, vtkDataObject*);
53 
54 protected:
56  ~vtkMultiBlockDataGroupFilter() VTK_OVERRIDE;
57 
58  int RequestInformation(vtkInformation *,
60  vtkInformationVector *) VTK_OVERRIDE;
61  int RequestUpdateExtent(vtkInformation *,
62  vtkInformationVector **,
63  vtkInformationVector *) VTK_OVERRIDE;
64  int RequestData(vtkInformation *,
65  vtkInformationVector **,
66  vtkInformationVector *) VTK_OVERRIDE;
67 
68  int FillInputPortInformation(int port, vtkInformation *info) VTK_OVERRIDE;
69 
70 private:
72  void operator=(const vtkMultiBlockDataGroupFilter&) VTK_DELETE_FUNCTION;
73 };
74 
75 #endif
76 
77 
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:33
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:58