VTK  9.4.20241226
vtkThreadedCompositeDataPipeline.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
19#ifndef vtkThreadedCompositeDataPipeline_h
20#define vtkThreadedCompositeDataPipeline_h
21
22#include "vtkCommonExecutionModelModule.h" // For export macro
24
25VTK_ABI_NAMESPACE_BEGIN
27class vtkInformation;
28
29class VTKCOMMONEXECUTIONMODEL_EXPORT vtkThreadedCompositeDataPipeline
31{
32public:
35 void PrintSelf(ostream& os, vtkIndent indent) override;
36
41 int CallAlgorithm(vtkInformation* request, int direction, vtkInformationVector** inInfo,
42 vtkInformationVector* outInfo) override;
43
44protected:
48 vtkInformationVector* outInfoVec, int compositePort, int connection, vtkInformation* request,
49 std::vector<vtkSmartPointer<vtkCompositeDataSet>>& compositeOutput) override;
50
51private:
53 void operator=(const vtkThreadedCompositeDataPipeline&) = delete;
54 friend class ProcessBlock;
55};
56
57VTK_ABI_NAMESPACE_END
58#endif
superclass for composite data iterators
Executive supporting composite datasets.
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Hold a reference to a vtkObjectBase instance.
int CallAlgorithm(vtkInformation *request, int direction, vtkInformationVector **inInfo, vtkInformationVector *outInfo) override
An API to CallAlgorithm that allows you to pass in the info objects to be used.
static vtkThreadedCompositeDataPipeline * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void ExecuteEach(vtkCompositeDataIterator *iter, vtkInformationVector **inInfoVec, vtkInformationVector *outInfoVec, int compositePort, int connection, vtkInformation *request, std::vector< vtkSmartPointer< vtkCompositeDataSet > > &compositeOutput) override