VTK  9.2.6
vtkThreadedCompositeDataPipeline.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkThreadedCompositeDataPipeline.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 =========================================================================*/
31#ifndef vtkThreadedCompositeDataPipeline_h
32#define vtkThreadedCompositeDataPipeline_h
33
34#include "vtkCommonExecutionModelModule.h" // For export macro
36
38class vtkInformation;
39
40class VTKCOMMONEXECUTIONMODEL_EXPORT vtkThreadedCompositeDataPipeline
42{
43public:
46 void PrintSelf(ostream& os, vtkIndent indent) override;
47
52 int CallAlgorithm(vtkInformation* request, int direction, vtkInformationVector** inInfo,
53 vtkInformationVector* outInfo) override;
54
55protected:
59 vtkInformationVector* outInfoVec, int compositePort, int connection, vtkInformation* request,
60 std::vector<vtkSmartPointer<vtkCompositeDataSet>>& compositeOutput) override;
61
62private:
64 void operator=(const vtkThreadedCompositeDataPipeline&) = delete;
65 friend class ProcessBlock;
66};
67
68#endif
superclass for composite data iterators
Executive supporting composite datasets.
a simple class to control print indentation
Definition: vtkIndent.h:40
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