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