X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkAtomicBlackBoxInputDescriptor.h;h=1b02c5159270d20010730bed126541c068d16bed;hb=c2a4b1893412e50a3d9abff221938a2d16c4a7cb;hp=a44c420c8df708163414f521e2b9153e38752b0f;hpb=6f678e6883d4d2734c81492412903c701c8e1f3c;p=bbtk.git diff --git a/kernel/src/bbtkAtomicBlackBoxInputDescriptor.h b/kernel/src/bbtkAtomicBlackBoxInputDescriptor.h index a44c420..1b02c51 100644 --- a/kernel/src/bbtkAtomicBlackBoxInputDescriptor.h +++ b/kernel/src/bbtkAtomicBlackBoxInputDescriptor.h @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbtkAtomicBlackBoxInputDescriptor.h,v $ Language: C++ - Date: $Date: 2008/02/07 11:06:37 $ - Version: $Revision: 1.1 $ + Date: $Date: 2008/04/08 06:59:29 $ + 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 @@ -47,12 +47,13 @@ namespace bbtk AtomicBlackBoxInputDescriptor( TypeInfo creator_type_info, - const std::string& name, - const std::string& description, - AtomicBlackBoxGetFunctor* getfunctor, - AtomicBlackBoxSetFunctor* setfunctor, - bool copy_construct = true); - + const std::string& name, + const std::string& description, + const std::string& nature, + AtomicBlackBoxGetFunctor* getfunctor, + AtomicBlackBoxSetFunctor* setfunctor, + bool copy_construct = true); + ~AtomicBlackBoxInputDescriptor(); /// Returns the type of the input TypeInfo GetTypeInfo() const { return mGetFunctor->GetTypeInfo(); } @@ -71,7 +72,7 @@ namespace bbtk private: /// Default ctor is private AtomicBlackBoxInputDescriptor() : - BlackBoxInputDescriptor(typeid(void),"","") {} + BlackBoxInputDescriptor(typeid(void),"","","") {} /// The functor on the Get method AtomicBlackBoxGetFunctor* mGetFunctor; /// The functor on the Set method