VTK
vtkImageInPlaceFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageInPlaceFilter.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 =========================================================================*/
24 #ifndef vtkImageInPlaceFilter_h
25 #define vtkImageInPlaceFilter_h
26 
27 #include "vtkCommonExecutionModelModule.h" // For export macro
28 #include "vtkImageAlgorithm.h"
29 
31 {
32 public:
34  void PrintSelf(ostream& os, vtkIndent indent);
35 
36 protected:
39 
40  virtual int RequestData(vtkInformation *request,
41  vtkInformationVector** inputVector,
42  vtkInformationVector* outputVector);
43 
44  void CopyData(vtkImageData *in, vtkImageData *out, int* outExt);
45 
46 private:
47  vtkImageInPlaceFilter(const vtkImageInPlaceFilter&); // Not implemented.
48  void operator=(const vtkImageInPlaceFilter&); // Not implemented.
49 };
50 
51 #endif
52 
53 
54 
55 
56 
57 
58 
VTKCOMMONEXECUTIONMODEL_EXPORT
#define VTKCOMMONEXECUTIONMODEL_EXPORT
Definition: vtkCommonExecutionModelModule.h:15
vtkImageInPlaceFilter::CopyData
void CopyData(vtkImageData *in, vtkImageData *out, int *outExt)
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkImageInPlaceFilter::vtkImageInPlaceFilter
vtkImageInPlaceFilter()
vtkImageAlgorithm.h
vtkCommonExecutionModelModule.h
vtkImageAlgorithm
Generic algorithm superclass for image algs.
Definition: vtkImageAlgorithm.h:40
vtkgl::in
GLuint in
Definition: vtkgl.h:16905
vtkImageInPlaceFilter::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
vtkImageData
topologically and geometrically regular array of data
Definition: vtkImageData.h:45
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkImageInPlaceFilter::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkImageInPlaceFilter::~vtkImageInPlaceFilter
~vtkImageInPlaceFilter()
vtkImageInPlaceFilter
Filter that operates in place.
Definition: vtkImageInPlaceFilter.h:31