]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdMakeFileName.h
*** empty log message ***
[bbtk.git] / packages / std / src / bbstdMakeFileName.h
index c370742af215a51292253b2c76716317fcf7b539..d7129f96db43d2bdecf7f0bb8e67f1ccf5d9883a 100644 (file)
@@ -9,11 +9,11 @@ namespace bbstd
     :
   public bbtk::AtomicBlackBox
   {
-    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);
-       BBTK_DECLARE_OUTPUT(Out,std::string);
+    BBTK_BLACK_BOX_INTERFACE(MakeFileName,bbtk::AtomicBlackBox);
+    BBTK_DECLARE_INPUT(Directory, std::string);
+    BBTK_DECLARE_INPUT(File,      std::string);
+    BBTK_DECLARE_INPUT(Extent,    std::string);
+    BBTK_DECLARE_OUTPUT(Out,      std::string);
     BBTK_PROCESS(DoProcess);
     void DoProcess();
 
@@ -27,11 +27,11 @@ namespace bbstd
   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_INPUT(MakeFileName,Directory,"Directory Name",std::string,"directory name");
+  BBTK_INPUT(MakeFileName,File,     "File Name",     std::string,"file name");
+  BBTK_INPUT(MakeFileName,Extent,   "Extention",     std::string,"file extension");
   
-  BBTK_OUTPUT(MakeFileName,Out,"Full File Name",std::string);
+  BBTK_OUTPUT(MakeFileName,Out,"Full File Name",std::string,"file name");
   BBTK_END_DESCRIBE_BLACK_BOX(MakeFileName);
 
 }