]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdMagicBox.cxx
Added MixingVector box.
[bbtk.git] / packages / std / src / bbstdMagicBox.cxx
index 0d3e476c3a1855a188eb6610f71f35584534af45..0bebe536f148a40e4609039c0e5cff862626e122 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbstdMagicBox.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/10/17 08:18:26 $
-  Version:   $Revision: 1.5 $
+  Date:      $Date: 2009/06/08 14:50:06 $
+  Version:   $Revision: 1.8 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
 
 #include "bbstdMagicBox.h"
 #include "bbstdPackage.h"
+#include "bbtkBlackBoxOutputConnector.h"
+using namespace bbtk;
+
 namespace bbstd
 {
 
+
+  void MagicBox::bbUserSetDefaultValues()
+  {
+  }
+  void MagicBox::bbUserInitializeProcessing() 
+  { 
+  }
+  void  MagicBox::bbUserFinalizeProcessing() 
+  {
+  }
+  void MagicBox::DoProcess()
+  { 
+    bbSetOutputOut( bbGetInputIn() );
+  }
+
   BBTK_ADD_BLACK_BOX_TO_PACKAGE(std,MagicBox);
   BBTK_BLACK_BOX_IMPLEMENTATION(MagicBox,bbtk::AtomicBlackBox);