/*========================================================================= Program: bbtk Module: $RCSfile: bbtkComplexBlackBoxOutputDescriptor.cxx,v $ Language: C++ Date: $Date: 2008/04/08 06:59:30 $ Version: $Revision: 1.4 $ 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::ComplexBlackBoxOutputDescriptor : structure containing the description of a ComplexBlackBox output (name, description, type, mapping) */ #include "bbtkComplexBlackBoxOutputDescriptor.h" namespace bbtk { ComplexBlackBoxOutputDescriptor:: ComplexBlackBoxOutputDescriptor( TypeInfo creator_type_info, const std::string& name, const std::string& description, const std::string& nature, const std::string& target, const std::string& output, TypeInfo type) : BlackBoxOutputDescriptor(creator_type_info,name,description,nature), mTarget(target), mOutput(output), mType(type) { bbtkDebugMessage("Kernel",9,"ComplexBlackBoxOutputDescriptor::ComplexBlackBoxOutputDescriptor(\""<