Cleanage.
[GPU.git] / WCudaMSE / Student_Cuda_Image / src / cpp / core / 04_RayTracing / moo / host / RayTracing.h
index 80729b8..313fa6b 100644 (file)
@@ -4,6 +4,8 @@
 #include "cudaTools.h"
 #include "Animable_I.h"
 #include "MathTools.h"
+#include "AleaTools.h"
+
 #include "Sphere.h"
 
 class RayTracing : public Animable_I
@@ -20,11 +22,13 @@ class RayTracing : public Animable_I
 
         float getT() /*override*/;
 
-        string getTitle(void) /*override*/;
+        std::string getTitle(void) /*override*/;
 
     private:
         Sphere* createSpheres(int n);
 
+        AleaTools alea;
+
         float t;
 
         const int w;
@@ -33,7 +37,7 @@ class RayTracing : public Animable_I
         const dim3 dg;
         const dim3 db;
 
-        const string title;
+        const std::string title;
     };
 
 #endif