Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / Tuto_Image / src / cpp / core / 03_Event / listener / key / SimpleKeyListener.h
1 #ifndef SIMPLE_KEY_LISTENER_H
2 #define SIMPLE_KEY_LISTENER_H
3
4 #include "KeyListener_I.h"
5
6 /*----------------------------------------------------------------------*\
7 |* Declaration *|
8 \*---------------------------------------------------------------------*/
9
10 /*--------------------------------------*\
11 |* Public *|
12 \*-------------------------------------*/
13
14 class SimpleKeyListener: public KeyListener_I
15 {
16 public:
17
18 /*--------------------------------------*\
19 |* Constructor *|
20 \*-------------------------------------*/
21
22 SimpleKeyListener();
23 virtual ~SimpleKeyListener();
24
25 public:
26
27 /*--------------------------------------*\
28 |* Methodes *|
29 \*-------------------------------------*/
30
31 void onKeyPressed(const KeyEvent& event); // override
32
33 /*--------------------------------------*\
34 |* Attributs *|
35 \*-------------------------------------*/
36
37 private:
38
39 };
40
41 #endif
42
43 /*----------------------------------------------------------------------*\
44 |* End *|
45 \*---------------------------------------------------------------------*/