/*========================================================================= Program: bbtk Module: $RCSfile: bbtkUserBlackBoxOutputDescriptor.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::UserBlackBoxOutputDescriptor : structure containing the description of a UserBlackBox output (name, description, type, functor) */ #include "bbtkUserBlackBoxOutputDescriptor.h" namespace bbtk { UserBlackBoxOutputDescriptor::UserBlackBoxOutputDescriptor( const std::string& name, const std::string& description, UserBlackBoxGetFunctor* getfunctor, UserBlackBoxSetFunctor* setfunctor, bool copy_construct ) : BlackBoxOutputDescriptor(name,description,copy_construct), mGetFunctor(getfunctor), mSetFunctor(setfunctor) { bbtkDebugMessage("Core",9, "UserBlackBoxOutputDescriptor::UserBlackBoxOutputDescriptor(\"" <