]> Creatis software - creaWT.git/blob - wt/bbtk_wt_PKG/src/bbwtconfigServerWT.cxx
ee97ce72e2a1b9689cd879ee14a0d25abf479f99
[creaWT.git] / wt / bbtk_wt_PKG / src / bbwtconfigServerWT.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 "bbwtconfigServerWT.h"
5 #include "bbwtPackage.h"
6 #include "bbtkWtBlackBox.h"
7 namespace bbwt
8 {
9
10 BBTK_ADD_BLACK_BOX_TO_PACKAGE(wt,configServerWT)
11 BBTK_BLACK_BOX_IMPLEMENTATION(configServerWT,bbtk::AtomicBlackBox);
12 //===== 
13 // 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)
14 //===== 
15 void configServerWT::Process()
16 {
17
18 // THE MAIN PROCESSING METHOD BODY
19 //   Here we simply set the input 'In' value to the output 'Out'
20 //   And print out the output value
21 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
22 //    void bbSet{Input|Output}NAME(const TYPE&)
23 //    const TYPE& bbGet{Input|Output}NAME() const 
24 //    Where :
25 //    * NAME is the name of the input/output
26 //      (the one provided in the attribute 'name' of the tag 'input')
27 //    * TYPE is the C++ type of the input/output
28 //      (the one provided in the attribute 'type' of the tag 'input')
29   //  bbSetOutputOut( bbGetInputIn() );
30  //   std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
31  
32   
33   bbtk::WtBlackBox::wtServerData::port      = bbGetInputPort();
34   bbtk::WtBlackBox::wtServerData::docRoot   = bbGetInputDocRoot(); 
35
36    
37 }
38 //===== 
39 // 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)
40 //===== 
41 void configServerWT::bbUserSetDefaultValues()
42 {
43
44 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
45 //    Here we initialize the input 'In' to 0
46    bbSetInputPort("8081");
47    bbSetInputDocRoot("/usr/local/share/wtResources");
48   
49 }
50 //===== 
51 // 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)
52 //===== 
53 void configServerWT::bbUserInitializeProcessing()
54 {
55
56 //  THE INITIALIZATION METHOD BODY :
57 //    Here does nothing 
58 //    but this is where you should allocate the internal/output pointers 
59 //    if any 
60
61   
62 }
63 //===== 
64 // 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)
65 //===== 
66 void configServerWT::bbUserFinalizeProcessing()
67 {
68
69 //  THE FINALIZATION METHOD BODY :
70 //    Here does nothing 
71 //    but this is where you should desallocate the internal/output pointers 
72 //    if any
73   
74 }
75 }
76 // EO namespace bbwt
77
78