VTK  9.0.1
vtkReaderExecutive.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkReaderExecutive.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 =========================================================================*/
29 #ifndef vtkReaderExecutive_h
30 #define vtkReaderExecutive_h
31 
32 #include "vtkCommonExecutionModelModule.h" // For export macro
34 
35 class VTKCOMMONEXECUTIONMODEL_EXPORT vtkReaderExecutive : public vtkStreamingDemandDrivenPipeline
36 {
37 public:
38  static vtkReaderExecutive* New();
40  void PrintSelf(ostream& os, vtkIndent indent) override;
41 
46  virtual int CallAlgorithm(vtkInformation* request, int direction, vtkInformationVector** inInfo,
47  vtkInformationVector* outInfo) override;
48 
49 protected:
51  ~vtkReaderExecutive() override;
52 
53 private:
54  vtkReaderExecutive(const vtkReaderExecutive&) = delete;
55  void operator=(const vtkReaderExecutive&) = delete;
56 };
57 
58 #endif
vtkX3D::direction
@ direction
Definition: vtkX3D.h:266
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkStreamingDemandDrivenPipeline.h
vtkReaderExecutive
Executive that works with vtkReaderAlgorithm and subclasses.
Definition: vtkReaderExecutive.h:35
vtkStreamingDemandDrivenPipeline::New
static vtkStreamingDemandDrivenPipeline * New()
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkStreamingDemandDrivenPipeline::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:73
vtkExecutive::CallAlgorithm
virtual int CallAlgorithm(vtkInformation *request, int direction, vtkInformationVector **inInfo, vtkInformationVector *outInfo)
An API to CallAlgorithm that allows you to pass in the info objects to be used.
vtkStreamingDemandDrivenPipeline
Executive supporting partial updates.
Definition: vtkStreamingDemandDrivenPipeline.h:46