X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fstd%2Fsrc%2FbbstdMagicBox.cxx;h=0bebe536f148a40e4609039c0e5cff862626e122;hb=be6451c2d201d8b3aa3089ced1788cda69df12cc;hp=0d3e476c3a1855a188eb6610f71f35584534af45;hpb=6575a389b71b1b85c79e4444885becb76ecf16e4;p=bbtk.git diff --git a/packages/std/src/bbstdMagicBox.cxx b/packages/std/src/bbstdMagicBox.cxx index 0d3e476..0bebe53 100644 --- a/packages/std/src/bbstdMagicBox.cxx +++ b/packages/std/src/bbstdMagicBox.cxx @@ -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 $ =========================================================================*/ /* --------------------------------------------------------------------- @@ -31,9 +31,27 @@ #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);