/*========================================================================= Program: bbtk Module: $RCSfile: bbtkUserBlackBoxInputDescriptor.cxx,v $ Language: C++ Date: $Date: 2008/01/22 15:02:00 $ Version: $Revision: 1.1.1.1 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or http://www.creatis.insa-lyon.fr/Public/bbtk/License.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. =========================================================================*/ /** * \file * \brief Class bbtk::UserBlackBoxInputDescriptor : structure containing the description of a UserBlackBox input (name, description, type, functor) */ #include "bbtkUserBlackBoxInputDescriptor.h" namespace bbtk { UserBlackBoxInputDescriptor::UserBlackBoxInputDescriptor( const std::string& name, const std::string& description, UserBlackBoxGetFunctor* getfunctor, UserBlackBoxSetFunctor* setfunctor, bool copy_construct) : BlackBoxInputDescriptor(name,description,MANDATORY,copy_construct), mGetFunctor(getfunctor), mSetFunctor(setfunctor) { bbtkDebugMessage("Core",9, "UserBlackBoxInputDescriptor::" <<"UserBlackBoxInputDescriptor(\"" <