]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdConfiguration.h
Renamed UserBlackBox into AtomicBlackBox which is a better name (versus ComplexBlackB...
[bbtk.git] / packages / std / src / bbstdConfiguration.h
index f0b048d5c1600c5929d5a359627e04b61a850b7d..241b370c7563ef61bab1a3bfc5d96842111ede51 100644 (file)
@@ -1,15 +1,15 @@
 #ifndef __bbstdConfiguration_h_INCLUDED__
 #define __bbstdConfiguration_h_INCLUDED__
 
-#include "bbtkUserBlackBox.h"
+#include "bbtkAtomicBlackBox.h"
 
 namespace bbstd
 {
   class Configuration
     : 
-    public bbtk::UserBlackBox
+    public bbtk::AtomicBlackBox
   {
-    BBTK_USER_BLACK_BOX_INTERFACE(Configuration,bbtk::UserBlackBox);
+    BBTK_USER_BLACK_BOX_INTERFACE(Configuration,bbtk::AtomicBlackBox);
       BBTK_DECLARE_OUTPUT(DataPath,std::string);
       BBTK_DECLARE_OUTPUT(FileSeparator,std::string);
       BBTK_DECLARE_OUTPUT(SystemType,int);
@@ -21,14 +21,14 @@ namespace bbstd
 
   };
 
-  BBTK_BEGIN_DESCRIBE_BLACK_BOX(Configuration,bbtk::UserBlackBox);
+  BBTK_BEGIN_DESCRIBE_BLACK_BOX(Configuration,bbtk::AtomicBlackBox);
   BBTK_NAME("Configuration");
   BBTK_AUTHOR("jpr@creatis.insa-lyon.fr");
   BBTK_CATEGORY("misc");
   BBTK_DESCRIPTION("Gets configuration informations");
-    BBTK_OUTPUT(Configuration,DataPath,"Sample Data Path",std::string);
-    BBTK_OUTPUT(Configuration,FileSeparator,"/ or \\",std::string);  
-    BBTK_OUTPUT(Configuration,SystemType,"0=Linux 1=Windows",int);  
+  BBTK_OUTPUT(Configuration,DataPath,"Sample Data Path",std::string);
+  BBTK_OUTPUT(Configuration,FileSeparator,"/ or \\",std::string);  
+  BBTK_OUTPUT(Configuration,SystemType,"0=Linux 1=Windows",int);  
   BBTK_END_DESCRIBE_BLACK_BOX(Configuration);
 }
 // EO namespace bbstd