X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=inline;f=kernel%2Fsrc%2FbbtkComplexBlackBoxOutputDescriptor.h;h=0403a541d315ae6ce6512354cc9305b3101aa483;hb=d7a6d341e2d11c175351212f0bf4812784dc57e5;hp=dff02047db1d25d674c7ce0ab26a95dfaf4edcdd;hpb=a26195c366a89795288009cf7e20f11afa494970;p=bbtk.git diff --git a/kernel/src/bbtkComplexBlackBoxOutputDescriptor.h b/kernel/src/bbtkComplexBlackBoxOutputDescriptor.h index dff0204..0403a54 100644 --- a/kernel/src/bbtkComplexBlackBoxOutputDescriptor.h +++ b/kernel/src/bbtkComplexBlackBoxOutputDescriptor.h @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbtkComplexBlackBoxOutputDescriptor.h,v $ Language: C++ - Date: $Date: 2008/01/22 15:02:00 $ - Version: $Revision: 1.1 $ + Date: $Date: 2008/04/08 06:59:30 $ + 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 @@ -36,12 +36,15 @@ namespace bbtk { - class BBTK_EXPORT ComplexBlackBoxOutputDescriptor : public bbtk::BlackBoxOutputDescriptor + class BBTK_EXPORT ComplexBlackBoxOutputDescriptor : + public bbtk::BlackBoxOutputDescriptor { public: - ComplexBlackBoxOutputDescriptor( const std::string& name, + 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); @@ -66,7 +69,8 @@ namespace bbtk private: /// Default ctor is private ComplexBlackBoxOutputDescriptor() : - BlackBoxOutputDescriptor("",""), mType(typeid(void)) {} + BlackBoxOutputDescriptor(typeid(void),"","",""), + mType(typeid(void)) {} std::string mTarget; std::string mOutput; TypeInfo mType;