Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkImageInPlaceFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkImageInPlaceFilter.h,v $
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00039 #ifndef __vtkImageInPlaceFilter_h
00040 #define __vtkImageInPlaceFilter_h
00041 
00042 #include "vtkImageToImageFilter.h"
00043 
00044 class VTK_FILTERING_EXPORT vtkImageInPlaceFilter : public vtkImageToImageFilter
00045 {
00046 public:
00047   vtkTypeRevisionMacro(vtkImageInPlaceFilter,vtkImageToImageFilter);
00048   void PrintSelf(ostream& os, vtkIndent indent);
00049 
00050 protected:
00051   vtkImageInPlaceFilter();
00052   ~vtkImageInPlaceFilter();
00053 
00054   virtual void ExecuteData(vtkDataObject *out);
00055   void CopyData(vtkImageData *in, vtkImageData *out);
00056   
00057 private:
00058   vtkImageInPlaceFilter(const vtkImageInPlaceFilter&);  // Not implemented.
00059   void operator=(const vtkImageInPlaceFilter&);  // Not implemented.
00060 };
00061 
00062 #endif
00063 
00064 
00065 
00066 
00067 
00068 
00069