]> Creatis software - creaCLI.git/blobdiff - ModuleCall/GenSrc/bbSlicerMultiplemodelsexample.h
All Slicer modules succesfully compiled into BBTK boxes :P
[creaCLI.git] / ModuleCall / GenSrc / bbSlicerMultiplemodelsexample.h
diff --git a/ModuleCall/GenSrc/bbSlicerMultiplemodelsexample.h b/ModuleCall/GenSrc/bbSlicerMultiplemodelsexample.h
new file mode 100644 (file)
index 0000000..5b663ce
--- /dev/null
@@ -0,0 +1,64 @@
+#ifndef __bbSlicerMultiplemodelsexample_h_INCLUDED__
+#define __bbSlicerMultiplemodelsexample_h_INCLUDED__
+
+#include "bbSlicer_EXPORT.h"
+#include "bbtkAtomicBlackBox.h"
+
+#include <vector>
+#include <cstdlib>
+#include <dlfcn.h>
+#include <sstream>
+#include <fstream>
+#include <iostream>
+
+#include <ModuleDescriptionUtilities.h>
+#include <ModuleDescriptionParser.h>
+#include <ModuleParameterGroup.h>
+#include <ModuleDescription.h>
+#include <ModuleParameter.h>
+
+#include "CreationTool.h"
+
+namespace bbSlicer {
+
+    class bbSlicer_EXPORT Multiplemodelsexample
+    :
+    public bbtk::AtomicBlackBox {
+        BBTK_BLACK_BOX_INTERFACE ( Multiplemodelsexample , bbtk::AtomicBlackBox ) ;
+
+        // GENERATED ARGS        
+        
+BBTK_DECLARE_INPUT ( InputVolume , std::string );
+BBTK_DECLARE_INPUT ( ColorTable , std::string );
+BBTK_DECLARE_INPUT ( NumberOfModels , int );
+BBTK_DECLARE_INPUT ( Models , std::string );
+
+        // EO GENERATED ARGS
+
+        BBTK_PROCESS ( Process ) ;
+        void Process ( ) ;
+    private:
+        void execute ( std::string lib , int _argc , char * _argv[] ) ;
+    } ;
+
+    BBTK_BEGIN_DESCRIBE_BLACK_BOX ( Multiplemodelsexample , bbtk::AtomicBlackBox ) ;
+    BBTK_NAME ( "Multiplemodelsexample" ) ;
+    BBTK_AUTHOR ( "Nicole Aucoin" ) ;
+    BBTK_DESCRIPTION ( "Create 3D surface models from segmented data.This example exports colors and imports a set of models automatically.If specify a list of Labels, it will over ride any start/end label settings." ) ;
+    BBTK_CATEGORY ( "Developer Tools" ) ;
+
+    // GENERATED DESCRPTION
+    
+BBTK_INPUT(Multiplemodelsexample , InputVolume , "InputVolume" , std::string, "");
+BBTK_INPUT(Multiplemodelsexample , ColorTable , "ColorTable" , std::string, "");
+BBTK_INPUT(Multiplemodelsexample , NumberOfModels , "NumberOfModels" , int, "");
+BBTK_INPUT(Multiplemodelsexample , Models , "Models" , std::string, "");
+
+    // EO GENERATED DESCRIPTION
+
+    BBTK_END_DESCRIBE_BLACK_BOX ( Multiplemodelsexample ) ;
+}
+
+#endif // __bbSlicerMultiplemodelsexample_h_INCLUDED__
+
+