]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkComplexBlackBoxOutputDescriptor.cxx
*** empty log message ***
[bbtk.git] / kernel / src / bbtkComplexBlackBoxOutputDescriptor.cxx
index 7b2d71f0d1d58136ad595c782e0b7d08fa4bf00e..743fbeeffd24c00b23f7dabe1c5a449bb1d7fed7 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkComplexBlackBoxOutputDescriptor.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/01/22 15:02:00 $
-  Version:   $Revision: 1.1 $
+  Date:      $Date: 2008/04/08 06:59:30 $
+  Version:   $Revision: 1.4 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -27,19 +27,22 @@ namespace bbtk
 {
 
 
-  ComplexBlackBoxOutputDescriptor::ComplexBlackBoxOutputDescriptor( const std::string& name,
-                                                                   const std::string& description,
-                                                                   const std::string& target,
-                                                                   const std::string& output,
-                                                                   TypeInfo type)                      
+  ComplexBlackBoxOutputDescriptor::
+  ComplexBlackBoxOutputDescriptor( TypeInfo creator_type_info,
+                                  const std::string& name,
+                                  const std::string& description,
+                                  const std::string& nature,
+                                  const std::string& target,
+                                  const std::string& output,
+                                  TypeInfo type)                       
     : 
-    BlackBoxOutputDescriptor(name,description),
+    BlackBoxOutputDescriptor(creator_type_info,name,description,nature),
     mTarget(target),
     mOutput(output),
     mType(type)
   {    
     
-    bbtkDebugMessage("Core",9,"ComplexBlackBoxOutputDescriptor::ComplexBlackBoxOutputDescriptor(\""<<name<<"\",\""<<description<<"\",\""<<target<<"\",\""<<output<<"\")"<<std::endl);
+    bbtkDebugMessage("Kernel",9,"ComplexBlackBoxOutputDescriptor::ComplexBlackBoxOutputDescriptor(\""<<name<<"\",\""<<description<<"\",\""<<target<<"\",\""<<output<<"\")"<<std::endl);
   }
   
 
@@ -48,7 +51,7 @@ namespace bbtk
 
   ComplexBlackBoxOutputDescriptor::~ComplexBlackBoxOutputDescriptor() 
   {
-    bbtkDebugMessage("Core",9,"ComplexBlackBoxOutputDescriptor::~ComplexBlackBoxOutputDescriptor(\""<<GetName()<<"\",\""<<GetDescription()<<"\",\""<<GetTarget()<<"\",\""<<GetOutput()<<"\")"<<std::endl);
+    bbtkDebugMessage("Kernel",9,"ComplexBlackBoxOutputDescriptor::~ComplexBlackBoxOutputDescriptor(\""<<GetName()<<"\",\""<<GetDescription()<<"\",\""<<GetTarget()<<"\",\""<<GetOutput()<<"\")"<<std::endl);
   }
   
 }