Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / API_Bilat_Displayable / INC / KeyListener_I.h
1 #ifndef KEY_LISTENER_I_H
2 #define KEY_LISTENER_I_H
3
4 #include "KeyEvent.h"
5
6 /*----------------------------------------------------------------------*\
7 |* Declaration *|
8 \*---------------------------------------------------------------------*/
9
10 /*--------------------------------------*\
11 |* Public *|
12 \*-------------------------------------*/
13
14 class CBI_DISPLAYABLE KeyListener_I
15 {
16 public:
17 virtual ~KeyListener_I()
18 {
19 // Nothing
20 }
21
22 virtual void onKeyPressed(const KeyEvent& event)=0;
23 };
24
25 #endif
26
27 /*----------------------------------------------------------------------*\
28 |* End *|
29 \*---------------------------------------------------------------------*/