Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / Tuto_Image / src / cpp / core / 03_Event / provider / EventProvider.cpp
1 #include "EventProvider.h"
2
3 /*----------------------------------------------------------------------*\
4 |* Declaration *|
5 \*---------------------------------------------------------------------*/
6
7 /*--------------------------------------*\
8 |* Imported *|
9 \*-------------------------------------*/
10
11 /*--------------------------------------*\
12 |* Public *|
13 \*-------------------------------------*/
14
15 /*--------------------------------------*\
16 |* Private *|
17 \*-------------------------------------*/
18
19 /*----------------------------------------------------------------------*\
20 |* Implementation *|
21 \*---------------------------------------------------------------------*/
22
23 /*--------------------------------------*\
24 |* Public *|
25 \*-------------------------------------*/
26
27 /*-----------------*\
28 |* static *|
29 \*----------------*/
30
31 EventImage* EventProvider::create(void)
32 {
33 int dw = 16 * 60; // =32*30=960
34 int dh = 16 * 60; // =32*30=960
35
36 return new EventImage(dw, dh);
37 }
38
39 /*--------------------------------------*\
40 |* Private *|
41 \*-------------------------------------*/
42
43 /*----------------------------------------------------------------------*\
44 |* End *|
45 \*---------------------------------------------------------------------*/