/*========================================================================= Program: bbtk Module: $RCSfile: bbtkAtomicBlackBoxOutputDescriptor.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::AtomicBlackBoxOutputDescriptor : structure containing the description of a AtomicBlackBox output (name, description, type, functor) */ #include "bbtkAtomicBlackBoxOutputDescriptor.h" namespace bbtk { AtomicBlackBoxOutputDescriptor:: AtomicBlackBoxOutputDescriptor( TypeInfo creator_type_info, const std::string& name, const std::string& description, AtomicBlackBoxGetFunctor* getfunctor, AtomicBlackBoxSetFunctor* setfunctor, bool copy_construct ) : BlackBoxOutputDescriptor(creator_type_info, name,description,copy_construct), mGetFunctor(getfunctor), mSetFunctor(setfunctor) { bbtkDebugMessage("Kernel",9, "AtomicBlackBoxOutputDescriptor::AtomicBlackBoxOutputDescriptor(\"" <