VTK  9.0.2
vtkPMergeArrays.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPMergeArrays.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 vtkPMergeArrays_h
27 #define vtkPMergeArrays_h
28 
29 #include "vtkFiltersParallelModule.h" // For export macro
30 #include "vtkMergeArrays.h"
31 
32 class VTKFILTERSPARALLEL_EXPORT vtkPMergeArrays : public vtkMergeArrays
33 {
34 public:
36  void PrintSelf(ostream& os, vtkIndent indent) override;
37 
38  static vtkPMergeArrays* New();
39 
40 protected:
42  ~vtkPMergeArrays() override {}
43 
44  int MergeDataObjectFields(vtkDataObject* input, int idx, vtkDataObject* output) override;
45 
46 private:
47  vtkPMergeArrays(const vtkPMergeArrays&) = delete;
48  void operator=(const vtkPMergeArrays&) = delete;
49 };
50 
51 #endif
general representation of visualization data
Definition: vtkDataObject.h:60
a simple class to control print indentation
Definition: vtkIndent.h:34
Multiple inputs with one output.
Multiple inputs with one output, parallel version.
int MergeDataObjectFields(vtkDataObject *input, int idx, vtkDataObject *output) override
For a given input and index, add data arrays to the output.
static vtkPMergeArrays * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkPMergeArrays() override