/*========================================================================= Program: bbtk Module: $RCSfile: bbtkAtomicBlackBoxInputDescriptor.cxx,v $ Language: C++ Date: $Date: 2008/02/07 11:06:37 $ Version: $Revision: 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::AtomicBlackBoxInputDescriptor : structure containing the description of a AtomicBlackBox input (name, description, type, functor) */ #include "bbtkAtomicBlackBoxInputDescriptor.h" namespace bbtk { AtomicBlackBoxInputDescriptor:: AtomicBlackBoxInputDescriptor( TypeInfo creator_type_info, const std::string& name, const std::string& description, AtomicBlackBoxGetFunctor* getfunctor, AtomicBlackBoxSetFunctor* setfunctor, bool copy_construct) : BlackBoxInputDescriptor(creator_type_info, name,description,MANDATORY,copy_construct), mGetFunctor(getfunctor), mSetFunctor(setfunctor) { bbtkDebugMessage("Kernel",9, "AtomicBlackBoxInputDescriptor::" <<"AtomicBlackBoxInputDescriptor(\"" <