VTK  9.1.0
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
32class VTKFILTERSPARALLEL_EXPORT vtkPMergeArrays : public vtkMergeArrays
33{
34public:
36 void PrintSelf(ostream& os, vtkIndent indent) override;
37
39
40protected:
42 ~vtkPMergeArrays() override = default;
43
44 int MergeDataObjectFields(vtkDataObject* input, int idx, vtkDataObject* output) override;
45
46private:
47 vtkPMergeArrays(const vtkPMergeArrays&) = delete;
48 void operator=(const vtkPMergeArrays&) = delete;
49};
50
51#endif
general representation of visualization data
a simple class to control print indentation
Definition: vtkIndent.h:113
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.
~vtkPMergeArrays() override=default
static vtkPMergeArrays * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.