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 
#define VTKCOMMONEXECUTIONMODEL_EXPORT
Filter that operates in place.
Store vtkAlgorithm input/output information.
a simple class to control print indentation
Definition: vtkIndent.h:38
topologically and geometrically regular array of data
Definition: vtkImageData.h:44
Generic algorithm superclass for image algs.
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent)
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)