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