]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkAtomicBlackBoxInputDescriptor.h
*** empty log message ***
[bbtk.git] / kernel / src / bbtkAtomicBlackBoxInputDescriptor.h
index a44c420c8df708163414f521e2b9153e38752b0f..1b02c5159270d20010730bed126541c068d16bed 100644 (file)
@@ -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