xref: /haiku/src/add-ons/input_server/devices/keyboard/Keymap.h (revision 17889a8c70dbb3d59c1412f6431968753c767bab)
1 /*
2  * Copyright 2004-2010, Haiku.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Jérôme Duval
7  */
8 #ifndef KEYMAP_H
9 #define KEYMAP_H
10 
11 
12 #include <Keymap.h>
13 #include <Entry.h>
14 
15 
16 class Keymap : public BKeymap {
17 public:
18 								Keymap();
19 								~Keymap();
20 
21 			void				DumpKeymap();
22 
23 			status_t			RetrieveCurrent();
24 };
25 
26 
27 #endif	// KEYMAP_H
28