]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkUserBlackBoxOutputDescriptor.cxx
*** empty log message ***
[bbtk.git] / kernel / src / bbtkUserBlackBoxOutputDescriptor.cxx
index df4d5881af017b051c5aa8d7affa246af6f3bd44..484cd1e203b89f623c4f375bbab502e3c99f4687 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkUserBlackBoxOutputDescriptor.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/02/05 13:23:46 $
-  Version:   $Revision: 1.2 $
+  Date:      $Date: 2008/02/06 14:14:22 $
+  Version:   $Revision: 1.3 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -27,13 +27,16 @@ namespace bbtk
 {
 
 
-  UserBlackBoxOutputDescriptor::UserBlackBoxOutputDescriptor( const std::string& name,
-                                                             const std::string& description,
-                                                             UserBlackBoxGetFunctor* getfunctor,
-                                                             UserBlackBoxSetFunctor* setfunctor,
-                                                             bool copy_construct ) 
+  UserBlackBoxOutputDescriptor::
+  UserBlackBoxOutputDescriptor( TypeInfo creator_type_info,
+                               const std::string& name,
+                               const std::string& description,
+                               UserBlackBoxGetFunctor* getfunctor,
+                               UserBlackBoxSetFunctor* setfunctor,
+                               bool copy_construct ) 
     : 
-    BlackBoxOutputDescriptor(name,description,copy_construct),
+    BlackBoxOutputDescriptor(creator_type_info,
+                            name,description,copy_construct),
     mGetFunctor(getfunctor),
     mSetFunctor(setfunctor)
   {