From 865f8dc6b6155d46589723efbce0632486290356 Mon Sep 17 00:00:00 2001 From: Otmane Lahlou <otmane.lahlou@c-s.fr> Date: Thu, 27 Oct 2011 11:52:15 +0200 Subject: [PATCH] ENH: remove verbosity --- .../otbWrapperNumericalParameter.h | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/Code/ApplicationEngine/otbWrapperNumericalParameter.h b/Code/ApplicationEngine/otbWrapperNumericalParameter.h index f4f9ada22e..d9b060960a 100644 --- a/Code/ApplicationEngine/otbWrapperNumericalParameter.h +++ b/Code/ApplicationEngine/otbWrapperNumericalParameter.h @@ -95,21 +95,10 @@ public: itkGetMacro(DefaultValue, ScalarType); /** Set the minimum value */ - //itkSetMacro(MinimumValue, ScalarType); - - void SetMinimumValue(ScalarType min) - { - std::cout <<"SetMinimum Value (old value : "<< m_MinimumValue << " ) -- ( new value :"<< min << " )" << std::endl; - m_MinimumValue = min; - } + itkSetMacro(MinimumValue, ScalarType); /** Get the minimum value */ - //itkGetMacro(MinimumValue, ScalarType); - ScalarType GetMinimumValue() - { - std::cout <<"Param "<< GetKey()<<" GetMinimum Value "<< m_MinimumValue << std::endl; - return m_MinimumValue; - } + itkGetMacro(MinimumValue, ScalarType); /** Set the maximum value */ itkSetMacro(MaximumValue, ScalarType); -- GitLab