VTK  9.0.3
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 =========================================================================*/
25 #ifndef vtkImageInPlaceFilter_h
26 #define vtkImageInPlaceFilter_h
27 
28 #include "vtkCommonExecutionModelModule.h" // For export macro
29 #include "vtkImageAlgorithm.h"
30 
31 class VTKCOMMONEXECUTIONMODEL_EXPORT vtkImageInPlaceFilter : public vtkImageAlgorithm
32 {
33 public:
35  void PrintSelf(ostream& os, vtkIndent indent) override;
36 
37 protected:
40 
41  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
42  vtkInformationVector* outputVector) override;
43 
44  void CopyData(vtkImageData* in, vtkImageData* out, int* outExt);
45 
46 private:
48  void operator=(const vtkImageInPlaceFilter&) = delete;
49 };
50 
51 #endif
Generic algorithm superclass for image algs.
topologically and geometrically regular array of data
Definition: vtkImageData.h:42
Filter that operates in place.
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called in response to a REQUEST_DATA request from the executive.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkImageInPlaceFilter() override
void CopyData(vtkImageData *in, vtkImageData *out, int *outExt)
a simple class to control print indentation
Definition: vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.