diff --git a/Core/Code/Algorithms/mitkVtkImageMapReslice.h b/Core/Code/Algorithms/mitkVtkImageMapReslice.h index 97992494d0..47dad99a8b 100644 --- a/Core/Code/Algorithms/mitkVtkImageMapReslice.h +++ b/Core/Code/Algorithms/mitkVtkImageMapReslice.h @@ -1,46 +1,47 @@ /*========================================================================= Program: Medical Imaging & Interaction Toolkit Language: C++ Date: $Date$ Version: $Revision: $ Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics. All rights reserved. See MITKCopyright.txt or http://www.mitk.org/copyright.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ #ifndef mitkVtkImageMapReslice_h_Included #define mitkVtkImageMapReslice_h_Included #include "vtkImageReslice.h" #include "MitkExports.h" - + /** \brief A Filter based on vtkImageReslice that extracts Coordinates in the 3D volume not pixel values. + * + */ class MITK_CORE_EXPORT mitkVtkImageMapReslice : public vtkImageReslice { public: static mitkVtkImageMapReslice *New(); vtkTypeMacro(mitkVtkImageMapReslice, vtkImageReslice); protected: mitkVtkImageMapReslice(); virtual ~mitkVtkImageMapReslice(); virtual void ThreadedRequestData(vtkInformation *vtkNotUsed(request), vtkInformationVector **vtkNotUsed(inputVector), vtkInformationVector *vtkNotUsed(outputVector), vtkImageData ***inData, vtkImageData **outData, int outExt[6], int id); - }; #endif //mitkVtkImageMapReslice_h_Included