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 __bbstdSplitFilePathVector_h_INCLUDED__
5 #define __bbstdSplitFilePathVector_h_INCLUDED__
6 #include "bbstd_EXPORT.h"
7 #include "bbtkAtomicBlackBox.h"
13 class bbstd_EXPORT SplitFilePathVector
15 public bbtk::AtomicBlackBox
17 BBTK_BLACK_BOX_INTERFACE(SplitFilePathVector,bbtk::AtomicBlackBox);
19 // 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)
21 BBTK_DECLARE_INPUT(In,std::vector<std::string>);
22 BBTK_DECLARE_OUTPUT(Path,std::vector<std::string>);
23 BBTK_DECLARE_OUTPUT(BaseName,std::vector<std::string>);
24 BBTK_DECLARE_OUTPUT(Ext,std::vector<std::string>);
25 BBTK_DECLARE_OUTPUT(FileName,std::vector<std::string>);
26 BBTK_DECLARE_OUTPUT(Slash,std::string);
27 BBTK_PROCESS(Process);
30 // 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)
34 BBTK_BEGIN_DESCRIBE_BLACK_BOX(SplitFilePathVector,bbtk::AtomicBlackBox);
35 BBTK_NAME("SplitFilePathVector");
36 BBTK_AUTHOR("Info-Dev");
37 BBTK_DESCRIPTION("No Description.");
38 BBTK_CATEGORY("empty");
40 BBTK_INPUT(SplitFilePathVector,In,"PathFileName",std::vector<std::string>,"");
42 BBTK_OUTPUT(SplitFilePathVector,Path,"Path",std::vector<std::string>,"");
43 BBTK_OUTPUT(SplitFilePathVector,BaseName,"Base Name",std::vector<std::string>,"");
44 BBTK_OUTPUT(SplitFilePathVector,Ext,"Extention",std::vector<std::string>,"");
45 BBTK_OUTPUT(SplitFilePathVector,FileName,"File Name",std::vector<std::string>,"");
46 BBTK_OUTPUT(SplitFilePathVector,Slash,"Slash Linux or Back slash Windows",std::string,"");
48 BBTK_END_DESCRIBE_BLACK_BOX(SplitFilePathVector);
50 // 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)
55 #endif // __bbstdSplitFilePathVector_h_INCLUDED__