X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=kernel%2Fsrc%2FbbtkComplexBlackBoxInputDescriptor.h;h=99d029ce45abba88f8fd3a78a67ff1b0b6e17999;hb=953cb03ed366d8660904b730bbae35d5f77e2e93;hp=1cd39a154aedaed9992bcd553c029b6d33972963;hpb=a26195c366a89795288009cf7e20f11afa494970;p=bbtk.git diff --git a/kernel/src/bbtkComplexBlackBoxInputDescriptor.h b/kernel/src/bbtkComplexBlackBoxInputDescriptor.h index 1cd39a1..99d029c 100644 --- a/kernel/src/bbtkComplexBlackBoxInputDescriptor.h +++ b/kernel/src/bbtkComplexBlackBoxInputDescriptor.h @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbtkComplexBlackBoxInputDescriptor.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 @@ -35,11 +35,13 @@ namespace bbtk { - class BBTK_EXPORT ComplexBlackBoxInputDescriptor : public bbtk::BlackBoxInputDescriptor + class BBTK_EXPORT ComplexBlackBoxInputDescriptor : + public bbtk::BlackBoxInputDescriptor { public: - ComplexBlackBoxInputDescriptor( const std::string& name, + ComplexBlackBoxInputDescriptor( TypeInfo creator_type_info, + const std::string& name, const std::string& description, const std::string& target, const std::string& input, @@ -63,8 +65,9 @@ namespace bbtk private: /// Default ctor is private - ComplexBlackBoxInputDescriptor() : BlackBoxInputDescriptor("",""), - mType(typeid(void)) {} + ComplexBlackBoxInputDescriptor() : + BlackBoxInputDescriptor(typeid(void),"",""), + mType(typeid(void)) {} std::string mTarget; std::string mInput; TypeInfo mType;