]> Creatis software - creaCLI.git/blob - bbtk_Slicer_PKG/src/bbSlicerSimpleIOTest.h
The following boxxes compilated with no errors
[creaCLI.git] / bbtk_Slicer_PKG / src / bbSlicerSimpleIOTest.h
1 #ifndef __bbSlicerSimpleIOTest_h_INCLUDED__
2 #define __bbSlicerSimpleIOTest_h_INCLUDED__
3
4 #include "bbSlicer_EXPORT.h"
5 #include "bbtkAtomicBlackBox.h"
6
7 #include <vector>
8 #include <cstdlib>
9 #include <dlfcn.h>
10 #include <sstream>
11 #include <fstream>
12 #include <iostream>
13
14 #include <ModuleDescriptionUtilities.h>
15 #include <ModuleDescriptionParser.h>
16 #include <ModuleParameterGroup.h>
17 #include <ModuleDescription.h>
18 #include <ModuleParameter.h>
19
20 #include "CreationTool.h"
21
22 namespace bbSlicer {
23
24     class bbSlicer_EXPORT SimpleIOTest
25     :
26     public bbtk::AtomicBlackBox {
27         BBTK_BLACK_BOX_INTERFACE ( SimpleIOTest , bbtk::AtomicBlackBox ) ;
28
29         // GENERATED ARGS        
30         
31 BBTK_DECLARE_INPUT ( inputVolume , std::string );
32 BBTK_DECLARE_INPUT ( outputVolume , std::string );
33
34         // EO GENERATED ARGS
35
36         BBTK_PROCESS ( Process ) ;
37         void Process ( ) ;
38     private:
39         void execute ( std::string lib , int _argc , char * _argv[] ) ;
40     } ;
41
42     BBTK_BEGIN_DESCRIBE_BLACK_BOX ( SimpleIOTest , bbtk::AtomicBlackBox ) ;
43     BBTK_NAME ( "SimpleIOTest" ) ;
44     BBTK_AUTHOR ( "Bill Lorensen" ) ;
45     BBTK_DESCRIPTION ( "Simple test of tensor IO" ) ;
46     BBTK_CATEGORY ( "Legacy.Work in Progress.Diffusion Tensor.Test" ) ;
47
48     // GENERATED DESCRPTION
49     
50 BBTK_INPUT(SimpleIOTest , inputVolume , "inputVolume" , std::string, "");
51 BBTK_INPUT(SimpleIOTest , outputVolume , "outputVolume" , std::string, "");
52
53     // EO GENERATED DESCRIPTION
54
55     BBTK_END_DESCRIBE_BLACK_BOX ( SimpleIOTest ) ;
56 }
57
58 #endif // __bbSlicerSimpleIOTest_h_INCLUDED__
59
60