X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkComplexBlackBoxOutputDescriptor.h;h=62f2a9dca2a17258f51a44b948f8591046b03860;hb=0bfd6ea8a50ca866039ce1eabdb8df2b3a0330b1;hp=dff02047db1d25d674c7ce0ab26a95dfaf4edcdd;hpb=a26195c366a89795288009cf7e20f11afa494970;p=bbtk.git diff --git a/kernel/src/bbtkComplexBlackBoxOutputDescriptor.h b/kernel/src/bbtkComplexBlackBoxOutputDescriptor.h index dff0204..62f2a9d 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/02/06 14:14:22 $ + Version: $Revision: 1.2 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -36,11 +36,13 @@ 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& target, const std::string& output, @@ -66,7 +68,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;