VTK
vtkImageImportExecutive.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageImportExecutive.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 =========================================================================*/
21 #ifndef vtkImageImportExecutive_h
22 #define vtkImageImportExecutive_h
23 
24 #include "vtkIOImageModule.h" // For export macro
26 
27 class VTKIOIMAGE_EXPORT vtkImageImportExecutive :
29 {
30 public:
31  static vtkImageImportExecutive* New();
32  vtkTypeMacro(vtkImageImportExecutive,
34 
38  virtual int ProcessRequest(vtkInformation* request,
39  vtkInformationVector** inInfo,
40  vtkInformationVector* outInfo);
41 
42 protected:
45 
46 private:
47  vtkImageImportExecutive(const vtkImageImportExecutive&) VTK_DELETE_FUNCTION;
48  void operator=(const vtkImageImportExecutive&) VTK_DELETE_FUNCTION;
49 };
50 
51 #endif
static vtkStreamingDemandDrivenPipeline * New()
vtkImageImportExecutive
Store vtkAlgorithm input/output information.
int ProcessRequest(vtkInformation *request, vtkInformationVector **inInfo, vtkInformationVector *outInfo) override
Generalized interface for asking the executive to fulfill update requests.
Store zero or more vtkInformation instances.
Executive supporting partial updates.