]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdASCII.h
cosmetics + change ASCII imput name type->Type
[bbtk.git] / packages / std / src / bbstdASCII.h
index 4ed04052e49acb92a911e9982ef1e09a921cbf43..7365d4391d74cf2c55849d777ba61e3f40b4f18e 100644 (file)
@@ -20,7 +20,7 @@ namespace bbstd
     virtual void bbUserDestructor();
     //==================================================================
     BBTK_DECLARE_INPUT(In,std::string);
-    BBTK_DECLARE_INPUT(type,int);
+    BBTK_DECLARE_INPUT(Type,int);
     BBTK_DECLARE_OUTPUT(Out,std::string);
     BBTK_PROCESS(Process);
     void Process();
@@ -32,9 +32,9 @@ namespace bbstd
 
   BBTK_DESCRIPTION("ascii codes sequence to string - string to ascii codes sequence");
   BBTK_CATEGORY("misc");
-  BBTK_INPUT(ASCII,In,"Input Ascii code or Ascii character",std::string,"");
-  BBTK_INPUT(ASCII,type,"type (default 0) 0=Ascii codes to string, 1=String to ascii codes",int,"");
-  BBTK_OUTPUT(ASCII,Out,"Ascii codes sequence or characters sequence",std::string,"");
+  BBTK_INPUT(ASCII,In,   "Ascii code or Ascii character",                                               std::string,"");
+  BBTK_INPUT(ASCII,Type, "Conversion type (default 0) 0=Ascii codes to string, 1=String to ascii codes",int,"");
+  BBTK_OUTPUT(ASCII,Out, "Ascii codes sequence or characters sequence",                                 std::string,"");
   BBTK_END_DESCRIBE_BLACK_BOX(ASCII);
 
 }