]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkMetaImageReader.cxx
#3011 BBTK Bug New Normal - change MetaImageReader vtk package xml -> cxx
[bbtk.git] / packages / vtk / src / bbvtkMetaImageReader.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 "bbvtkMetaImageReader.h"
5 #include "bbvtkPackage.h"
6
7 #include "vtkMetaImageReader.h"
8
9 namespace bbvtk
10 {
11
12 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,MetaImageReader)
13 BBTK_BLACK_BOX_IMPLEMENTATION(MetaImageReader,bbtk::AtomicBlackBox);
14 //===== 
15 // 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)
16 //===== 
17 void MetaImageReader::Process()
18 {
19
20 // THE MAIN PROCESSING METHOD BODY
21 //   Here we simply set the input 'In' value to the output 'Out'
22 //   And print out the output value
23 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
24 //    void bbSet{Input|Output}NAME(const TYPE&)
25 //    const TYPE& bbGet{Input|Output}NAME() const 
26 //    Where :
27 //    * NAME is the name of the input/output
28 //      (the one provided in the attribute 'name' of the tag 'input')
29 //    * TYPE is the C++ type of the input/output
30 //      (the one provided in the attribute 'type' of the tag 'input')
31
32 //    bbSetOutputOut( bbGetInputIn() );
33 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
34
35         vtkMetaImageReader *reader = vtkMetaImageReader::New();
36         reader->SetFileName(bbGetInputIn().c_str());
37         reader->Update();
38         bbSetOutputOut(reader->GetOutput());
39 }
40 //===== 
41 // 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)
42 //===== 
43 void MetaImageReader::bbUserSetDefaultValues()
44 {
45
46 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
47 //    Here we initialize the input 'In' to 0
48    bbSetInputIn("");
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 MetaImageReader::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 MetaImageReader::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 bbvtk
78
79