]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkConnection.cxx
*** empty log message ***
[bbtk.git] / kernel / src / bbtkConnection.cxx
index ff8bd77d3940f0f0bd6343d971ea85528e463c34..50496582f7b9f544d80485495029085aea06c4c3 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkConnection.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/01/22 15:02:00 $
-  Version:   $Revision: 1.1 $
+  Date:      $Date: 2008/02/05 13:23:46 $
+  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
@@ -37,7 +37,7 @@ namespace bbtk
       mFromAny(false),
       mToAny(false)
   {
-    bbtkDebugMessageInc("Core",7,"Connection::Connection(\""
+    bbtkDebugMessageInc("Kernel",7,"Connection::Connection(\""
                        <<from->bbGetName()<<"\",\""<<output<<"\",\""
                        <<to->bbGetName()<<"\",\""<<input<<"\")"
                        <<std::endl);    
@@ -86,7 +86,7 @@ namespace bbtk
          }
        else if (  to->bbGetInputType(input) == typeid(Data) )
          {   
-           bbtkDebugMessage("Core",8," -> '"<<input<<"' type is "
+           bbtkDebugMessage("Kernel",8," -> '"<<input<<"' type is "
                             <<TypeName<Data>()<<" : can receive any data"
                             <<std::endl);
            mToAny = true;
@@ -115,7 +115,7 @@ namespace bbtk
     from->bbConnectOutput(output,this);
     to->bbConnectInput(input,this);
     
-    bbtkDebugDecTab("Core",7);
+    bbtkDebugDecTab("Kernel",7);
   }
 
   //==================================================================
@@ -125,7 +125,7 @@ namespace bbtk
   /// Dtor 
   Connection::~Connection()
   {
-    bbtkDebugMessageInc("Core",7,
+    bbtkDebugMessageInc("Kernel",7,
                        "Connection::~Connection() ["
                        <<GetFullName()<<"]"<<std::endl);
 
@@ -133,7 +133,7 @@ namespace bbtk
     mTo->bbDisconnectInput(mInput,this);
     if (mAdaptor) mAdaptor->bbDelete();
 
-    bbtkDebugDecTab("Core",7);
+    bbtkDebugDecTab("Kernel",7);
   }
   //==================================================================