]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkConnection.cxx
Created a bbs editor : bbed
[bbtk.git] / kernel / src / bbtkConnection.cxx
index 50496582f7b9f544d80485495029085aea06c4c3..8d60b38699afa0f73b65fa34d6243c95155a5d09 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkConnection.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/02/05 13:23:46 $
-  Version:   $Revision: 1.2 $
+  Date:      $Date: 2008/03/18 12:51:26 $
+  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
@@ -32,8 +32,10 @@ namespace bbtk
   /// Ctor with the black box from and to and their input and output.
 /// Check the input and output compatibility
   Connection::Connection(BlackBox* from, const std::string& output,
-                        BlackBox* to, const std::string& input   )
+                        BlackBox* to, const std::string& input ,
+                        const Factory* f  )
     : mAdaptor(0),
+      mFactory(f),
       mFromAny(false),
       mToAny(false)
   {
@@ -61,7 +63,7 @@ namespace bbtk
 
     if (to->bbGetInputConnectorMap().find(input)->second->IsConnected())
       {
-       bbtkError("The input \""<<input<<"\" of the box \""<<to->bbGetTypeName()
+       bbtkError("The input \""<<input<<"\" of the box \""<<to->bbGetName()
                  <<"\" is already connected");
       }
     
@@ -97,7 +99,7 @@ namespace bbtk
            std::string name;
            name = from->bbGetName() + "." + output + "-" 
              + to->bbGetName() + "." + input; 
-           mAdaptor = NewAdaptor(from->bbGetOutputType(output),
+           mAdaptor = mFactory->NewAdaptor(from->bbGetOutputType(output),
                                  to->bbGetInputType(input),
                                  name);
            if (!mAdaptor)  
@@ -229,7 +231,7 @@ namespace bbtk
            bbtk::BlackBox* adaptor = 0;
            try 
              {
-               adaptor = NewAdaptor(mFrom->bbGetOutput(mOutput).type(),
+               adaptor = mFactory->NewAdaptor(mFrom->bbGetOutput(mOutput).type(),
                                     mTo->bbGetInputType(mInput),
                                     "");
              }