c4e560f87b78b6df0dc510d0a2d8c1ef8bf69585
[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