]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkAtomicBlackBoxOutputDescriptor.cxx
*** empty log message ***
[bbtk.git] / kernel / src / bbtkAtomicBlackBoxOutputDescriptor.cxx
index db79f8ff2e2323f86457e169ac80093277323603..ae0aa693c37156a12f19c8a3a1b175441fd042ed 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkAtomicBlackBoxOutputDescriptor.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
@@ -29,14 +29,16 @@ namespace bbtk
 
   AtomicBlackBoxOutputDescriptor::
   AtomicBlackBoxOutputDescriptor( 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 ) 
     : 
     BlackBoxOutputDescriptor(creator_type_info,
-                            name,description,copy_construct),
+                            name,description,nature,
+                            copy_construct),
     mGetFunctor(getfunctor),
     mSetFunctor(setfunctor)
   {    
@@ -44,7 +46,8 @@ namespace bbtk
     bbtkDebugMessage("Kernel",9,
                     "AtomicBlackBoxOutputDescriptor::AtomicBlackBoxOutputDescriptor(\""
                     <<name<<"\",\""<<description
-                    <<"\""<<getfunctor<<","<<setfunctor
+                    <<"\",\""<<nature<<"\","
+                    <<getfunctor<<","<<setfunctor
                     <<","<<copy_construct<<")"<<std::endl);
   }