VTK
dox/Imaging/Core/vtkImageWrapPad.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkImageWrapPad.h
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 =========================================================================*/
00030 #ifndef __vtkImageWrapPad_h
00031 #define __vtkImageWrapPad_h
00032 
00033 
00034 #include "vtkImagingCoreModule.h" // For export macro
00035 #include "vtkImagePadFilter.h"
00036 
00037 class vtkInformation;
00038 class vtkInformationVector;
00039 
00040 class VTKIMAGINGCORE_EXPORT vtkImageWrapPad : public vtkImagePadFilter
00041 {
00042 public:
00043   static vtkImageWrapPad *New();
00044   vtkTypeMacro(vtkImageWrapPad,vtkImagePadFilter);
00045 
00046 protected:
00047   vtkImageWrapPad() {}
00048   ~vtkImageWrapPad() {}
00049 
00050   void ComputeInputUpdateExtent (int inExt[6], int outExt[6], int wExt[6]);
00051   void ThreadedRequestData (vtkInformation* request,
00052                             vtkInformationVector** inputVector,
00053                             vtkInformationVector* outputVector,
00054                             vtkImageData ***inData, vtkImageData **outData,
00055                             int ext[6], int id);
00056 private:
00057   vtkImageWrapPad(const vtkImageWrapPad&);  // Not implemented.
00058   void operator=(const vtkImageWrapPad&);  // Not implemented.
00059 };
00060 
00061 #endif
00062 
00063 
00064 
00065 // VTK-HeaderTest-Exclude: vtkImageWrapPad.h