]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkAtomicBlackBoxInputDescriptor.cxx
*** empty log message ***
[bbtk.git] / kernel / src / bbtkAtomicBlackBoxInputDescriptor.cxx
index b0c6e8c9a963cfb49c392ae75a156eaef41b1433..2cc605e740ae758d3dbbfded34da6c0d49c1e732 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkAtomicBlackBoxInputDescriptor.cxx,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
@@ -28,21 +28,26 @@ namespace bbtk
   
   AtomicBlackBoxInputDescriptor::
   AtomicBlackBoxInputDescriptor( TypeInfo creator_type_info,
-                              const std::string& name,
-                              const std::string& description,
-                              AtomicBlackBoxGetFunctor* getfunctor,
-                              AtomicBlackBoxSetFunctor* setfunctor,
-                              bool copy_construct) 
+                                const std::string& name,
+                                const std::string& description,
+                                const std::string& nature,
+                                AtomicBlackBoxGetFunctor* getfunctor,
+                                AtomicBlackBoxSetFunctor* setfunctor,
+                                bool copy_construct) 
     : 
     BlackBoxInputDescriptor(creator_type_info,
-                           name,description,MANDATORY,copy_construct),
+                           name,description,
+                           nature,
+                           copy_construct,
+                           MANDATORY),
     mGetFunctor(getfunctor),
     mSetFunctor(setfunctor)
   {  
     bbtkDebugMessage("Kernel",9,
                     "AtomicBlackBoxInputDescriptor::"
                     <<"AtomicBlackBoxInputDescriptor(\""
-                    <<name<<"\",\""<<description<<"\","
+                    <<name<<"\",\""<<description<<"\",\""
+                    <<nature<<"\","
                     <<getfunctor<<","<<setfunctor<<","
                     <<copy_construct<<")"<<std::endl);
   }