VTK
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 :
37 {
38 public:
39  static vtkReaderExecutive* New();
41  void PrintSelf(ostream& os, vtkIndent indent) override;
42 
47  virtual int CallAlgorithm(vtkInformation* request, int direction,
48  vtkInformationVector** inInfo,
49  vtkInformationVector* outInfo) override;
50 
51 protected:
53  ~vtkReaderExecutive() override;
54 
55 private:
56  vtkReaderExecutive(const vtkReaderExecutive&) = delete;
57  void operator=(const vtkReaderExecutive&) = delete;
58 };
59 
60 #endif
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkStreamingDemandDrivenPipeline * New()
Store vtkAlgorithm input/output information.
Executive that works with vtkReaderAlgorithm and subclasses.
a simple class to control print indentation
Definition: vtkIndent.h:39
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.
Store zero or more vtkInformation instances.
Executive supporting partial updates.