]> Creatis software - bbtk.git/blob - packages/std/src/bbstdConcatStrings_tool.cxx
#3508 ConcatString_tool Reactivity 2
[bbtk.git] / packages / std / src / bbstdConcatStrings_tool.cxx
1 //===== 
2 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
3 //===== 
4 #include "bbstdConcatStrings_tool.h"
5 #include "bbstdPackage.h"
6 namespace bbstd
7 {
8
9 BBTK_ADD_BLACK_BOX_TO_PACKAGE(std,ConcatStrings_tool)
10 BBTK_BLACK_BOX_IMPLEMENTATION(ConcatStrings_tool,bbtk::AtomicBlackBox);
11 //===== 
12 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
13 //===== 
14 void ConcatStrings_tool::Process()
15 {
16
17 // THE MAIN PROCESSING METHOD BODY
18 //   Here we simply set the input 'In' value to the output 'Out'
19 //   And print out the output value
20 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
21 //    void bbSet{Input|Output}NAME(const TYPE&)
22 //    const TYPE& bbGet{Input|Output}NAME() const 
23 //    Where :
24 //    * NAME is the name of the input/output
25 //      (the one provided in the attribute 'name' of the tag 'input')
26 //    * TYPE is the C++ type of the input/output
27 //      (the one provided in the attribute 'type' of the tag 'input')
28 //    bbSetOutputOut( bbGetInputIn() );
29 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
30   
31     if ( bbGetInputBox_ConcatString()!=NULL )
32     {
33         if ( (bbGetInputType()==1) )
34         {
35             bbGetInputBox_ConcatString()->bbSetOutputOut( bbGetInputIn1() );
36           bbGetInputBox_ConcatString()->bbSignalOutputModification(std::string("Out"),true);
37 //                bbGetInputBox_ConcatString()->bbSignalOutputModification();
38         } // if Type == 1
39
40         if ( (bbGetInputType()==2) )
41         {
42             bbGetInputBox_ConcatString()->bbSetOutputOut( bbGetInputIn1() );
43             bbGetInputBox_ConcatString()->bbSignalOutputModification(std::string("Out"),false);
44         } // if Type == 2
45     } // if bbGetInputBox_ConcatString!NULL
46     
47 }
48
49 //===== 
50 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
51 //===== 
52 void ConcatStrings_tool::bbUserSetDefaultValues()
53 {
54 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
55 //    Here we initialize the input 'In' to 0
56     bbSetInputIn1("");
57     bbSetInputType(0);
58     bbSetInputBox_ConcatString(NULL);
59 }
60
61 //===== 
62 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
63 //===== 
64 void ConcatStrings_tool::bbUserInitializeProcessing()
65 {
66 //  THE INITIALIZATION METHOD BODY :
67 //    Here does nothing 
68 //    but this is where you should allocate the internal/output pointers 
69 //    if any
70 }
71
72 //===== 
73 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
74 //===== 
75 void ConcatStrings_tool::bbUserFinalizeProcessing()
76 {
77 //  THE FINALIZATION METHOD BODY :
78 //    Here does nothing 
79 //    but this is where you should desallocate the internal/output pointers 
80 //    if any
81 }
82
83 } // EO namespace bbstd