Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / Tuto_Image_Cuda / src / cpp / core / 03_Event / provider / EventProvider.h
1 #ifndef EVENT_PROVIDER_H_
2 #define EVENT_PROVIDER_H_
3
4 #include "Event.h"
5 #include "EventImage.h"
6
7 /*----------------------------------------------------------------------*\
8 |* Declaration *|
9 \*---------------------------------------------------------------------*/
10
11 /*--------------------------------------*\
12 |* Public *|
13 \*-------------------------------------*/
14
15 class EventProvider
16 {
17 public:
18
19 static Event* create(void);
20 static EventImage* createGL(void);
21
22 };
23
24 #endif
25
26 /*----------------------------------------------------------------------*\
27 |* End *|
28 \*---------------------------------------------------------------------*/
29