2 #include "bbmySamplePackagemySampleBox1.h"
3 #include "bbmySamplePackagePackage.h"
4 namespace bbmySamplePackage
7 BBTK_ADD_BLACK_BOX_TO_PACKAGE(mySamplePackage,mySampleBox1)
8 BBTK_BLACK_BOX_IMPLEMENTATION(mySampleBox1,bbtk::AtomicBlackBox);
10 void mySampleBox1::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')
25 c.SetX(bbGetInputIn1());
26 c.SetY(bbGetInputIn2());
28 bbSetOutputOut(c.GetResult());
30 std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
34 void mySampleBox1::bbUserSetDefaultValues()
37 // SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX
42 void mySampleBox1::bbUserInitializeProcessing()
45 // THE INITIALIZATION METHOD BODY :
47 // but this is where you should allocate the internal/output pointers
53 void mySampleBox1::bbUserFinalizeProcessing()
56 // THE FINALIZATION METHOD BODY :
58 // but this is where you should desallocate the internal/output pointers
63 // EO namespace bbmySamplePackage