Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / Tuto_CppTest / src / cpp / core / mainCore.cpp
1 #include <stdlib.h>
2 #include <iostream>
3
4 using std::cout;
5 using std::endl;
6
7 /*----------------------------------------------------------------------*\
8 |* Declaration *|
9 \*---------------------------------------------------------------------*/
10
11 /*--------------------------------------*\
12 |* Imported *|
13 \*-------------------------------------*/
14
15 extern void helloCPP(void);
16
17 /*--------------------------------------*\
18 |* Public *|
19 \*-------------------------------------*/
20
21 int mainCore(void);
22
23 /*--------------------------------------*\
24 |* Private *|
25 \*-------------------------------------*/
26
27 static void work(void);
28
29 /*----------------------------------------------------------------------*\
30 |* Implementation *|
31 \*---------------------------------------------------------------------*/
32
33 /*--------------------------------------*\
34 |* Public *|
35 \*-------------------------------------*/
36
37 int mainCore(void)
38 {
39 work();
40
41 return EXIT_SUCCESS;
42 }
43
44 /*--------------------------------------*\
45 |* Private *|
46 \*-------------------------------------*/
47
48 void work(void)
49 {
50 helloCPP();
51 }
52
53 /*----------------------------------------------------------------------*\
54 |* End *|
55 \*---------------------------------------------------------------------*/
56