]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkComplexBlackBoxInputDescriptor.cxx
Created a bbs editor : bbed
[bbtk.git] / kernel / src / bbtkComplexBlackBoxInputDescriptor.cxx
index 29d174b43f4a6ea690cae679b6425d260ddf783b..f32344f3012bc1ba63658e57255a9731d64eafa5 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkComplexBlackBoxInputDescriptor.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/01/22 15:02:00 $
-  Version:   $Revision: 1.1 $
+  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,25 +27,27 @@ namespace bbtk
 {
 
   
-  ComplexBlackBoxInputDescriptor::ComplexBlackBoxInputDescriptor( const std::string& name,
-                                                                   const std::string& description,
-                                                                   const std::string& target,
-                                                                 const std::string& input,
-TypeInfo type)                 
+  ComplexBlackBoxInputDescriptor::
+  ComplexBlackBoxInputDescriptor( TypeInfo creator_type_info,
+                                 const std::string& name,
+                                 const std::string& description,
+                                 const std::string& target,
+                                 const std::string& input,
+                                 TypeInfo type)                        
     : 
-    BlackBoxInputDescriptor(name,description),
+    BlackBoxInputDescriptor(creator_type_info,name,description),
     mTarget(target),
     mInput(input),
     mType(type)
   {    
     
-    bbtkDebugMessage("Core",9,"ComplexBlackBoxInputDescriptor::ComplexBlackBoxInputDescriptor(\""<<name<<"\",\""<<description<<"\",\""<<target<<"\",\""<<input<<"\")"<<std::endl);
+    bbtkDebugMessage("Kernel",9,"ComplexBlackBoxInputDescriptor::ComplexBlackBoxInputDescriptor(\""<<name<<"\",\""<<description<<"\",\""<<target<<"\",\""<<input<<"\")"<<std::endl);
   }
   
 
   ComplexBlackBoxInputDescriptor::~ComplexBlackBoxInputDescriptor() 
   {
-    bbtkDebugMessage("Core",9,"ComplexBlackBoxInputDescriptor::~ComplexBlackBoxInputDescriptor(\""<<GetName()<<"\",\""<<GetDescription()<<"\",\""<<GetTarget()<<"\",\""<<GetInput()<<"\")"<<std::endl);
+    bbtkDebugMessage("Kernel",9,"ComplexBlackBoxInputDescriptor::~ComplexBlackBoxInputDescriptor(\""<<GetName()<<"\",\""<<GetDescription()<<"\",\""<<GetTarget()<<"\",\""<<GetInput()<<"\")"<<std::endl);
   }
   
 }