]> Creatis software - bbtk.git/blob - packages/std/src/bbstdReadColumnsString.h
skip lines
[bbtk.git] / packages / std / src / bbstdReadColumnsString.h
1 /*
2  # ---------------------------------------------------------------------
3  #
4  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5  #                        pour la SantÈ)
6  # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7  # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8  # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9  #
10  #  This software is governed by the CeCILL-B license under French law and
11  #  abiding by the rules of distribution of free software. You can  use,
12  #  modify and/ or redistribute the software under the terms of the CeCILL-B
13  #  license as circulated by CEA, CNRS and INRIA at the following URL
14  #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15  #  or in the file LICENSE.txt.
16  #
17  #  As a counterpart to the access to the source code and  rights to copy,
18  #  modify and redistribute granted by the license, users are provided only
19  #  with a limited warranty  and the software's author,  the holder of the
20  #  economic rights,  and the successive licensors  have only  limited
21  #  liability.
22  #
23  #  The fact that you are presently reading this means that you have had
24  #  knowledge of the CeCILL-B license and that you accept its terms.
25  # ------------------------------------------------------------------------ */
26
27
28 //=====
29 // 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)
30 //===== 
31 #ifndef __bbstdReadColumnsString_h_INCLUDED__
32 #define __bbstdReadColumnsString_h_INCLUDED__
33 #include "bbstd_EXPORT.h"
34 #include "bbtkAtomicBlackBox.h"
35 #include "iostream"
36
37 namespace bbstd
38 {
39
40 class bbstd_EXPORT ReadColumnsString
41  : 
42    public bbtk::AtomicBlackBox
43 {
44   BBTK_BLACK_BOX_INTERFACE(ReadColumnsString,bbtk::AtomicBlackBox);
45 //===== 
46 // 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)
47 //===== 
48         BBTK_DECLARE_INPUT(FileName,std::string);
49         BBTK_DECLARE_INPUT(SkipLines,int);      
50         BBTK_DECLARE_INPUT(Dimension,int);      
51         
52         BBTK_DECLARE_OUTPUT(lstData1,std::vector<std::string> );
53         BBTK_DECLARE_OUTPUT(lstData2,std::vector<std::string> );
54         BBTK_DECLARE_OUTPUT(lstData3,std::vector<std::string> );
55         BBTK_DECLARE_OUTPUT(lstData4,std::vector<std::string> );
56         BBTK_DECLARE_OUTPUT(lstData5,std::vector<std::string> );
57         BBTK_DECLARE_OUTPUT(lstData6,std::vector<std::string> );
58         BBTK_DECLARE_OUTPUT(lstData7,std::vector<std::string> );
59         BBTK_DECLARE_OUTPUT(lstData8,std::vector<std::string> );
60         BBTK_DECLARE_OUTPUT(lstData9,std::vector<std::string> );
61
62         BBTK_PROCESS(Process);
63   void Process();
64 //===== 
65 // 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)
66 //===== 
67 };
68
69 BBTK_BEGIN_DESCRIBE_BLACK_BOX(ReadColumnsString,bbtk::AtomicBlackBox);
70         
71         BBTK_NAME("ReadColumnsString");
72         BBTK_AUTHOR("Info-Dev");
73         BBTK_DESCRIPTION("Read Columns from a text file");
74         BBTK_CATEGORY("read/write");
75         BBTK_INPUT(ReadColumnsString,FileName,"File name of Points",std::string,"");
76         BBTK_INPUT(ReadColumnsString,SkipLines,"(default 0) - Number of lines to be skipe before read data",int,"");
77         BBTK_INPUT(ReadColumnsString,Dimension,"(default 1) - The number of columns of the file",int,"");
78         
79         BBTK_OUTPUT(ReadColumnsString,lstData1,"vector of data",std::vector<std::string>,"");
80         BBTK_OUTPUT(ReadColumnsString,lstData2,"vector of data",std::vector<std::string>,"");
81         BBTK_OUTPUT(ReadColumnsString,lstData3,"vector of data",std::vector<std::string>,"");
82         BBTK_OUTPUT(ReadColumnsString,lstData4,"vector of data",std::vector<std::string>,"");
83         BBTK_OUTPUT(ReadColumnsString,lstData5,"vector of data",std::vector<std::string>,"");
84         BBTK_OUTPUT(ReadColumnsString,lstData6,"vector of data",std::vector<std::string>,"");
85         BBTK_OUTPUT(ReadColumnsString,lstData7,"vector of data",std::vector<std::string>,"");
86         BBTK_OUTPUT(ReadColumnsString,lstData8,"vector of data",std::vector<std::string>,"");
87         BBTK_OUTPUT(ReadColumnsString,lstData9,"vector of data",std::vector<std::string>,"");
88         
89         
90         
91 BBTK_END_DESCRIBE_BLACK_BOX(ReadColumnsString);
92 //===== 
93 // 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)
94 //===== 
95 }
96 // EO namespace bbstd
97
98 #endif // __bbstdReadColumnsString_h_INCLUDED__
99