TP Histogramme.
[GPU.git] / WCudaMSE / Student_Cuda / src / cpp / core / mainCore.cpp
index ad144a1..2b24911 100755 (executable)
@@ -1,44 +1,22 @@
 #include <iostream>
 #include <stdlib.h>
+using namespace std;
 
+#include "01c_Saucisson/Saucisson.h"
+#include "02_ProduitScalaire/ProduitScalaire.h"
+#include "03_Histogramme/Histogramme.h"
 
-using std::cout;
-using std::endl;
-
-/*----------------------------------------------------------------------*\
- |*                    Declaration                                     *|
- \*---------------------------------------------------------------------*/
-
-/*--------------------------------------*\
- |*            Imported                *|
- \*-------------------------------------*/
-
-extern bool useHello(void);
-
-/*--------------------------------------*\
- |*            Public                  *|
- \*-------------------------------------*/
-
-int mainCore();
-
-/*--------------------------------------*\
- |*            Private                 *|
- \*-------------------------------------*/
-
-
-
-/*----------------------------------------------------------------------*\
- |*                    Implementation                                  *|
- \*---------------------------------------------------------------------*/
-
-/*--------------------------------------*\
- |*            Public                  *|
- \*-------------------------------------*/
+extern bool useHello();
+extern bool addVectors();
 
 int mainCore()
     {
     bool isOk = true;
-    isOk &= useHello();
+    //isOk &= useHello();
+    //isOk &= addVectors();
+    //isOk &= produitScalaire();
+    //isOk &= saucisson();
+    //isOk &= histogramme();
 
     cout << "\nisOK = " << isOk << endl;
     cout << "\nEnd : mainCore" << endl;
@@ -46,13 +24,3 @@ int mainCore()
     return isOk ? EXIT_SUCCESS : EXIT_FAILURE;
     }
 
-/*--------------------------------------*\
- |*            Private                 *|
- \*-------------------------------------*/
-
-
-
-/*----------------------------------------------------------------------*\
- |*                    End                                             *|
- \*---------------------------------------------------------------------*/
-