diff --git a/Modules/AlgorithmsExt/include/mitkSurfaceToPointSetFilter.h b/Modules/AlgorithmsExt/include/mitkSurfaceToPointSetFilter.h index 3d419b53b5..9891214b34 100644 --- a/Modules/AlgorithmsExt/include/mitkSurfaceToPointSetFilter.h +++ b/Modules/AlgorithmsExt/include/mitkSurfaceToPointSetFilter.h @@ -1,62 +1,62 @@ /*=================================================================== The Medical Imaging Interaction Toolkit (MITK) Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics. All rights reserved. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See LICENSE.txt or http://www.mitk.org for details. ===================================================================*/ #ifndef MITKSURFACETOPOINTSETFILTER_H_HEADER_INCLUDED_ #define MITKSURFACETOPOINTSETFILTER_H_HEADER_INCLUDED_ // exports #include "MitkAlgorithmsExtExports.h" //mitk headers #include #include "mitkSurface.h" //#include namespace mitk { /** Documentation * @brief This filter converts the input surface into a point set. The output point set contains every point exactly one time * (no dublicated points like in the stl-format). */ class MITKALGORITHMSEXT_EXPORT SurfaceToPointSetFilter : public mitk::PointSetSource { public: mitkClassMacro(SurfaceToPointSetFilter,mitk::PointSetSource); itkNewMacro(Self); - + using itk::ProcessObject::SetInput; void SetInput(mitk::Surface::Pointer m_InputSurface); std::string GetErrorMessage(); protected: SurfaceToPointSetFilter(); ~SurfaceToPointSetFilter(); /** @brief method generating the output of this filter. Called in the updated process of the pipeline. */ virtual void GenerateData(); //############### members ######################## mitk::Surface::Pointer m_InputSurface; std::string m_ErrorMessage; }; } // namespace mitk #endif /* MITKSURFACETODISTANCEIMAGEFILTER_H_HEADER_INCLUDED_ */