]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkUserBlackBoxInputDescriptor.cxx
*** empty log message ***
[bbtk.git] / kernel / src / bbtkUserBlackBoxInputDescriptor.cxx
index 38a8077201e2323a4bbd355fef1dd80acc034ab8..91d0ed6f83780764168d963397bbb5dde90303e0 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkUserBlackBoxInputDescriptor.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
 namespace bbtk
 {
   
-  UserBlackBoxInputDescriptor::UserBlackBoxInputDescriptor( const std::string& name,
-                                                           const std::string& description,
-                                                           UserBlackBoxGetFunctor* getfunctor,
-                                                           UserBlackBoxSetFunctor* setfunctor,
-                                                           bool copy_construct) 
+  UserBlackBoxInputDescriptor::
+  UserBlackBoxInputDescriptor( TypeInfo creator_type_info,
+                              const std::string& name,
+                              const std::string& description,
+                              UserBlackBoxGetFunctor* getfunctor,
+                              UserBlackBoxSetFunctor* setfunctor,
+                              bool copy_construct) 
     : 
-    BlackBoxInputDescriptor(name,description,MANDATORY,copy_construct),
+    BlackBoxInputDescriptor(creator_type_info,
+                           name,description,MANDATORY,copy_construct),
     mGetFunctor(getfunctor),
     mSetFunctor(setfunctor)
   {