Commencement du labo Mandelbrot et Julia.
[GPU.git] / WCudaMSE / Student_Cuda_Image / src / cpp / core / 01_Rippling / provider / RipplingProvider.h
1 #ifndef RIPPLING_PROVIDER_H_
2 #define RIPPLING_PROVIDER_H_
3
4 #include "Rippling.h"
5 #include "Image.h"
6
7 /*----------------------------------------------------------------------*\
8 |* Declaration *|
9 \*---------------------------------------------------------------------*/
10
11 /*--------------------------------------*\
12 |* Public *|
13 \*-------------------------------------*/
14
15 class RipplingProvider
16 {
17 public:
18 static Rippling* createMOO(void);
19 static Image* createGL(void);
20
21 };
22
23 #endif
24
25 /*----------------------------------------------------------------------*\
26 |* End *|
27 \*---------------------------------------------------------------------*/
28