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);
11 // The method mySampleBoxWithITK::Process()
12 // has a Template mechanism and is implemented in the .h file
16 void mySampleBoxWithITK::bbUserSetDefaultValues()
19 // SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX
20 // Here we initialize the inputs 'Lower' and 'Upper'
24 bbSetInputUpper(1200);
27 void mySampleBoxWithITK::bbUserInitializeProcessing()
29 // THE INITIALIZATION METHOD BODY :
31 // but this is where you should allocate the internal/output pointers
35 void mySampleBoxWithITK::bbUserFinalizeProcessing()
37 // THE FINALIZATION METHOD BODY :
39 // but this is where you should desallocate the internal/output pointers
45 // EO namespace bbmySamplePackage