]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkGetVtkImageVectorSize.cxx
2186 BBTK Feature New Normal GetVtkImageVectorSize new Box
[bbtk.git] / packages / vtk / src / bbvtkGetVtkImageVectorSize.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 "bbvtkGetVtkImageVectorSize.h"
5 #include "bbvtkPackage.h"
6
7 namespace bbvtk
8 {
9
10 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,GetVtkImageVectorSize)
11 BBTK_BLACK_BOX_IMPLEMENTATION(GetVtkImageVectorSize,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 GetVtkImageVectorSize::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
30     bbSetOutputVectorSize( bbGetInputIn().size() );
31   
32 }
33 //===== 
34 // 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)
35 //===== 
36 void GetVtkImageVectorSize::bbUserSetDefaultValues()
37 {
38
39 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
40 //    Here we initialize the input 'In' to 0
41
42 //   bbSetInputIn(0);
43   
44 }
45 //===== 
46 // 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)
47 //===== 
48 void GetVtkImageVectorSize::bbUserInitializeProcessing()
49 {
50
51 //  THE INITIALIZATION METHOD BODY :
52 //    Here does nothing 
53 //    but this is where you should allocate the internal/output pointers 
54 //    if any 
55
56   
57 }
58 //===== 
59 // 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)
60 //===== 
61 void GetVtkImageVectorSize::bbUserFinalizeProcessing()
62 {
63
64 //  THE FINALIZATION METHOD BODY :
65 //    Here does nothing 
66 //    but this is where you should desallocate the internal/output pointers 
67 //    if any
68   
69 }
70 }
71 // EO namespace bbvtk
72
73