]> Creatis software - bbtk.git/blob - packages/std/src/bbstdSplitFilePathVector.h
#2808, #2807, #2806, #2805, #2804 BBTK Feature New Normal Add new functionality MathO...
[bbtk.git] / packages / std / src / bbstdSplitFilePathVector.h
1 //===== 
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)
3 //===== 
4 #ifndef __bbstdSplitFilePathVector_h_INCLUDED__
5 #define __bbstdSplitFilePathVector_h_INCLUDED__
6 #include "bbstd_EXPORT.h"
7 #include "bbtkAtomicBlackBox.h"
8 #include "iostream"
9
10 namespace bbstd
11 {
12
13 class bbstd_EXPORT SplitFilePathVector
14  : 
15    public bbtk::AtomicBlackBox
16 {
17   BBTK_BLACK_BOX_INTERFACE(SplitFilePathVector,bbtk::AtomicBlackBox);
18 //===== 
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)
20 //===== 
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);
28   void Process();
29 //===== 
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)
31 //===== 
32 };
33
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");
39
40   BBTK_INPUT(SplitFilePathVector,In,"PathFileName",std::vector<std::string>,"");
41
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,"");
47
48 BBTK_END_DESCRIBE_BLACK_BOX(SplitFilePathVector);
49 //===== 
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)
51 //===== 
52 }
53 // EO namespace bbstd
54
55 #endif // __bbstdSplitFilePathVector_h_INCLUDED__
56