]> Creatis software - bbtk.git/blob - kernel/src/bbtkSystemTools.h
v1.03 BUG 1410
[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
14 namespace bbtk
15 {
16
17
18 class BBTK_EXPORT bbtkSystemTools
19 {
20 public:
21         bbtkSystemTools();
22         virtual ~bbtkSystemTools();
23 public:
24         /**
25          * This method executes CreatePackage
26          */
27         static void CreatePackage();
28         /**
29          * This method executes CreateBlackBox
30          */
31         static void CreateBlackBox();
32         /**
33          * This method executes bbi
34          */
35         static void ExecuteBbi();
36         /**
37          * This method executes creaNewProject
38          */
39         static void ExecuteCreaNewProject();
40 };
41
42
43 }// namespace bbtk
44
45
46 #endif /* BBTKSYSTEMTOOLS_H_ */