]> Creatis software - bbtk.git/blob - kernel/src/bbtkSystemTools.h
DFCH: bbtkSystemTools class has been created and implemented
[bbtk.git] / kernel / src / bbtkSystemTools.h
1 /*
2  * bbtkSystemTools.h
3  *
4  *  Created on: Apr 23, 2012
5  *      Author: pechan
6  */
7
8 #ifndef BBTKSYSTEMTOOLS_H_
9 #define BBTKSYSTEMTOOLS_H_
10
11 #include <cstdlib>
12
13 class bbtkSystemTools
14 {
15 public:
16         bbtkSystemTools();
17         virtual ~bbtkSystemTools();
18 public:
19         /**
20          * This method executes CreatePackage
21          */
22         static void CreatePackage();
23         /**
24          * This method executes CreateBlackBox
25          */
26         static void CreateBlackBox();
27         /**
28          * This method executes bbi
29          */
30         static void ExecuteBbi();
31         /**
32          * This method executes creaNewProject
33          */
34         static void ExecuteCreaNewProject();
35 };
36
37 #endif /* BBTKSYSTEMTOOLS_H_ */