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
27class VTKIOIMAGE_EXPORT vtkImageImportExecutive :
29{
30public:
32 vtkTypeMacro(vtkImageImportExecutive,
34
38 virtual int ProcessRequest(vtkInformation* request,
39 vtkInformationVector** inInfo,
40 vtkInformationVector* outInfo);
41
42protected:
45
46private:
47 vtkImageImportExecutive(const vtkImageImportExecutive&) VTK_DELETE_FUNCTION;
48 void operator=(const vtkImageImportExecutive&) VTK_DELETE_FUNCTION;
49};
50
51#endif
vtkImageImportExecutive
virtual int ProcessRequest(vtkInformation *request, vtkInformationVector **inInfo, vtkInformationVector *outInfo)
Override to implement some requests with callbacks.
static vtkImageImportExecutive * New()
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Executive supporting partial updates.