VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 
30 class VTKCOMMONEXECUTIONMODEL_EXPORT vtkImageInPlaceFilter : public vtkImageAlgorithm
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 
Filter that operates in place.
Generic algorithm superclass for image algs.
void PrintSelf(ostream &os, vtkIndent indent)
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)