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 =========================================================================*/
27 #ifndef __vtkImageInPlaceFilter_h
28 #define __vtkImageInPlaceFilter_h
29 
30 #include "vtkImageAlgorithm.h"
31 
33 {
34 public:
36  void PrintSelf(ostream& os, vtkIndent indent);
37 
38 protected:
41 
42  virtual int RequestData(vtkInformation *request,
43  vtkInformationVector** inputVector,
44  vtkInformationVector* outputVector);
45 
46  void CopyData(vtkImageData *in, vtkImageData *out);
47 
48 private:
49  vtkImageInPlaceFilter(const vtkImageInPlaceFilter&); // Not implemented.
50  void operator=(const vtkImageInPlaceFilter&); // Not implemented.
51 };
52 
53 #endif
54 
55 
56 
57 
58 
59 
60 
Filter that operates in place.
Store vtkAlgorithm input/output information.
#define VTK_FILTERING_EXPORT
a simple class to control print indentation
Definition: vtkIndent.h:37
topologically and geometrically regular array of data
Definition: vtkImageData.h:43
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)