]> Creatis software - crea.git/blob - appli/creaNewProject/NewProject/bbtk_mySamplePackage_PKG/src/bbmySamplePackagemySampleBoxWithVTK.cxx
55385341629379c45f46873602f5a5d904344e39
[crea.git] / appli / creaNewProject / NewProject / bbtk_mySamplePackage_PKG / src / bbmySamplePackagemySampleBoxWithVTK.cxx
1
2 #include "bbmySamplePackagemySampleBoxWithVTK.h"
3 #include "bbmySamplePackagePackage.h"
4 namespace bbmySamplePackage
5 {
6
7 BBTK_ADD_BLACK_BOX_TO_PACKAGE(mySamplePackage,mySampleBoxWithVTK)
8 BBTK_BLACK_BOX_IMPLEMENTATION(mySampleBoxWithVTK,bbtk::AtomicBlackBox);
9
10 void mySampleBoxWithVTK::Process()
11 {
12
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 
19 //    Where :
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;
26   
27 }
28
29 void mySampleBoxWithVTK::bbUserSetDefaultValues()
30 {
31
32 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
33 //    Here we initialize the input 'In' to 0
34    bbSetInputIn(0);
35   
36 }
37
38 void mySampleBoxWithVTK::bbUserInitializeProcessing()
39 {
40
41 //  THE INITIALIZATION METHOD BODY :
42 //    Here does nothing 
43 //    but this is where you should allocate the internal/output pointers 
44 //    if any 
45
46   
47 }
48
49 void mySampleBoxWithVTK::bbUserFinalizeProcessing()
50 {
51
52 //  THE FINALIZATION METHOD BODY :
53 //    Here does nothing 
54 //    but this is where you should desallocate the internal/output pointers 
55 //    if any
56   
57 }
58 }
59 // EO namespace bbmySamplePackage
60
61