/*========================================================================= Program: bbtk Module: $RCSfile: bbtkAtomicBlackBoxInputDescriptor.cxx,v $ Language: C++ Date: $Date: 2008/04/08 06:59:29 $ Version: $Revision: 1.2 $ 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, const std::string& nature, AtomicBlackBoxGetFunctor* getfunctor, AtomicBlackBoxSetFunctor* setfunctor, bool copy_construct) : BlackBoxInputDescriptor(creator_type_info, name,description, nature, copy_construct, MANDATORY), mGetFunctor(getfunctor), mSetFunctor(setfunctor) { bbtkDebugMessage("Kernel",9, "AtomicBlackBoxInputDescriptor::" <<"AtomicBlackBoxInputDescriptor(\"" <