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