Correction de probl?me de compilation li? a RayTracing.
[GPU.git] / WCudaMSE / Student_Cuda_Image / src / cpp / core / 04_RayTracing / provider / RayTracingProvider.h
1 #ifndef RAYTRACING_PROVIDER_H
2 #define RAYTRACING_PROVIDER_H
3
4 #include "RayTracing.h"
5 #include "Image.h"
6
7 class RayTracingProvider
8 {
9 public:
10 static RayTracing* create();
11 static Image* createGL();
12 };
13
14 #endif