Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / BilatTools_Cuda_smart_switch / src / test / mainCPP.cpp
1 #include <iostream>
2
3 using std::cout;
4 using std::endl;
5
6 /*----------------------------------------------------------------------*\
7 |* Declaration *|
8 \*---------------------------------------------------------------------*/
9
10 #include "cpp.h"
11 #include "cu_cpp.h"
12
13 /*--------------------------------------*\
14 |* Imported *|
15 \*-------------------------------------*/
16
17 extern bool mainCU();
18
19 /*--------------------------------------*\
20 |* Public *|
21 \*-------------------------------------*/
22
23 /*--------------------------------------*\
24 |* Private *|
25 \*-------------------------------------*/
26
27 /*----------------------------------------------------------------------*\
28 |* Implementation *|
29 \*---------------------------------------------------------------------*/
30
31 /*--------------------------------------*\
32 |* Public *|
33 \*-------------------------------------*/
34
35 bool mainCPP(void)
36 {
37 cout << "[BilatTools_Cuda_Smart_switch] : just inlcude to force compilation in .cpp" << endl;
38
39 // TODO use classe
40 mainCU();
41
42 return true;;
43 }
44
45 /*--------------------------------------*\
46 |* Private *|
47 \*-------------------------------------*/
48
49 /*----------------------------------------------------------------------*\
50 |* End *|
51 \*---------------------------------------------------------------------*/
52