/*========================================================================= Program: bbtk Module: $RCSfile: bbtkBlackBoxOutputDescriptor.h,v $ Language: C++ Date: $Date: 2008/04/04 08:04:05 $ Version: $Revision: 1.3 $ 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::BlackBoxOutputDescriptor : abstract descriptor of an output of a black box (stores a name, a description and type) */ /** * \class bbtk::BlackBoxOutputDescriptor * \brief Abstract descriptor of an output of a black box (stores a name, a description and type) */ #ifndef __bbtkBlackBoxOutputDescriptor_h__ #define __bbtkBlackBoxOutputDescriptor_h__ #include "bbtkBlackBoxInputOutputDescriptor.h" namespace bbtk { class BBTK_EXPORT BlackBoxOutputDescriptor : public BlackBoxInputOutputDescriptor { public: /// Ctor with name and description BlackBoxOutputDescriptor( TypeInfo creator_type_info, const std::string& name, const std::string& description, bool copy_construct = true) : BlackBoxInputOutputDescriptor(creator_type_info,name, description, copy_construct) {} protected: /// Default ctor is reserved to children BlackBoxOutputDescriptor() : BlackBoxInputOutputDescriptor() {} }; } // namespace bbtk #endif