]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdMakeFileName.h
Renamed UserBlackBox into AtomicBlackBox which is a better name (versus ComplexBlackB...
[bbtk.git] / packages / std / src / bbstdMakeFileName.h
index bf61184264e6ee9c7d2e75c92e2cd614f4bc4d7b..c370742af215a51292253b2c76716317fcf7b539 100644 (file)
@@ -1,15 +1,15 @@
 #ifndef __bbstdMakeFileName_h_INCLUDED__
 #define __bbstdMakeFileName_h_INCLUDED__
 
-#include "bbtkUserBlackBox.h"
+#include "bbtkAtomicBlackBox.h"
 
 namespace bbstd
 {
   class MakeFileName
     :
-  public bbtk::UserBlackBox
+  public bbtk::AtomicBlackBox
   {
-    BBTK_USER_BLACK_BOX_INTERFACE(MakeFileName,bbtk::UserBlackBox);
+    BBTK_USER_BLACK_BOX_INTERFACE(MakeFileName,bbtk::AtomicBlackBox);
        BBTK_DECLARE_INPUT(Directory,std::string);
        BBTK_DECLARE_INPUT(File,std::string);
        BBTK_DECLARE_INPUT(Extent,std::string);
@@ -22,16 +22,16 @@ namespace bbstd
 
   };
 
-  BBTK_BEGIN_DESCRIBE_BLACK_BOX(MakeFileName,bbtk::UserBlackBox);
+  BBTK_BEGIN_DESCRIBE_BLACK_BOX(MakeFileName,bbtk::AtomicBlackBox);
   BBTK_NAME("MakeFileName");
   BBTK_AUTHOR("jpr@creatis.insa-lyon.fr");
   BBTK_CATEGORY("misc");
   BBTK_DESCRIPTION("Makes a kosher file name");
-     BBTK_INPUT(MakeFileName,Directory,"Directory Name",std::string);
-     BBTK_INPUT(MakeFileName,File,"File Name",std::string);
-     BBTK_INPUT(MakeFileName,Extent,"Extention",std::string);
-
-     BBTK_OUTPUT(MakeFileName,Out,"Full File Name",std::string);
+  BBTK_INPUT(MakeFileName,Directory,"Directory Name",std::string);
+  BBTK_INPUT(MakeFileName,File,"File Name",std::string);
+  BBTK_INPUT(MakeFileName,Extent,"Extention",std::string);
+  
+  BBTK_OUTPUT(MakeFileName,Out,"Full File Name",std::string);
   BBTK_END_DESCRIBE_BLACK_BOX(MakeFileName);
 
 }