]> Creatis software - creaWT.git/blob - wt/bbtk_wt_PKG/src/bbwtGetConfigServerWt.cxx
#2691 creaWT Feature New Normal - Implementation temp files
[creaWT.git] / wt / bbtk_wt_PKG / src / bbwtGetConfigServerWt.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 "bbwtGetConfigServerWt.h"
5 #include "bbwtPackage.h"
6 #include "bbtkWtBlackBox.h"
7
8 namespace bbwt
9 {
10
11 BBTK_ADD_BLACK_BOX_TO_PACKAGE(wt,GetConfigServerWt)
12 BBTK_BLACK_BOX_IMPLEMENTATION(GetConfigServerWt,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 GetConfigServerWt::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
31 //    bbSetOutputOut( bbGetInputIn() );
32 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
33   
34   bbSetOutputPort( bbtk::WtBlackBox::wtServerData::port );
35   bbSetOutputDocRoot( bbtk::WtBlackBox::wtServerData::docRoot ); 
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 GetConfigServerWt::bbUserSetDefaultValues()
42 {
43
44 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
45 //    Here we initialize the input 'In' to 0
46 //   bbSetInputIn(0);
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 GetConfigServerWt::bbUserInitializeProcessing()
53 {
54
55 //  THE INITIALIZATION METHOD BODY :
56 //    Here does nothing 
57 //    but this is where you should allocate the internal/output pointers 
58 //    if any 
59
60   
61 }
62 //===== 
63 // 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)
64 //===== 
65 void GetConfigServerWt::bbUserFinalizeProcessing()
66 {
67
68 //  THE FINALIZATION METHOD BODY :
69 //    Here does nothing 
70 //    but this is where you should desallocate the internal/output pointers 
71 //    if any
72   
73 }
74 }
75 // EO namespace bbwt
76
77