2 #include "bbmySamplePackagemySampleBoxWithITK.h"
3 #include "bbmySamplePackagePackage.h"
4 namespace bbmySamplePackage
7 BBTK_ADD_BLACK_BOX_TO_PACKAGE(mySamplePackage,mySampleBoxWithITK)
8 BBTK_BLACK_BOX_IMPLEMENTATION(mySampleBoxWithITK,bbtk::AtomicBlackBox);
10 void mySampleBoxWithITK::Process()
13 // THE MAIN PROCESSING METHOD BODY
14 // Here we simply set the input 'In' value to the output 'Out'
15 // And print out the output value
16 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
17 // void bbSet{Input|Output}NAME(const TYPE&)
18 // const TYPE& bbGet{Input|Output}NAME() const
20 // * NAME is the name of the input/output
21 // (the one provided in the attribute 'name' of the tag 'input')
22 // * TYPE is the C++ type of the input/output
23 // (the one provided in the attribute 'type' of the tag 'input')
24 bbSetOutputOut( bbGetInputIn() );
25 std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
28 void mySampleBoxWithITK::bbUserSetDefaultValues()
31 // SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX
32 // Here we initialize the input 'In' to 0
36 void mySampleBoxWithITK::bbUserInitializeProcessing()
38 // THE INITIALIZATION METHOD BODY :
40 // but this is where you should allocate the internal/output pointers
44 void mySampleBoxWithITK::bbUserFinalizeProcessing()
46 // THE FINALIZATION METHOD BODY :
48 // but this is where you should desallocate the internal/output pointers
54 // EO namespace bbmySamplePackage