2 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
4 #ifndef __bbstdReplaceString_h_INCLUDED__
5 #define __bbstdReplaceString_h_INCLUDED__
6 #include "bbstd_EXPORT.h"
7 #include "bbtkAtomicBlackBox.h"
15 class bbstd_EXPORT ReplaceString
17 public bbtk::AtomicBlackBox
19 BBTK_BLACK_BOX_INTERFACE(ReplaceString,bbtk::AtomicBlackBox);
21 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
23 // BBTK_DECLARE_INPUT(In,std::string);
24 BBTK_DECLARE_INPUT(In,std::vector<std::string>);
25 BBTK_DECLARE_INPUT(Search,std::string);
26 BBTK_DECLARE_INPUT(Replace,std::string);
27 // BBTK_DECLARE_OUTPUT(Out,std::string);
28 BBTK_DECLARE_OUTPUT(Out,std::vector<std::string>);
29 BBTK_PROCESS(Process);
32 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
36 BBTK_BEGIN_DESCRIBE_BLACK_BOX(ReplaceString,bbtk::AtomicBlackBox);
37 BBTK_NAME("ReplaceString");
38 BBTK_AUTHOR("InfoDev");
39 BBTK_DESCRIPTION("No Description.");
40 BBTK_CATEGORY("empty");
41 // BBTK_INPUT(ReplaceString,In,"Input string",std::string,"");
42 BBTK_INPUT(ReplaceString,In,"Input vector of string",std::vector<std::string>,"");
43 BBTK_INPUT(ReplaceString,Search,"Searche sub string ",std::string,"");
44 BBTK_INPUT(ReplaceString,Replace,"Replace new string",std::string,"");
45 // BBTK_OUTPUT(ReplaceString,Out,"Output string",std::string,"");
46 BBTK_OUTPUT(ReplaceString,Out,"Output vector string",std::vector< std::string >,"");
47 BBTK_END_DESCRIBE_BLACK_BOX(ReplaceString);
49 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
54 #endif // __bbstdReplaceString_h_INCLUDED__