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
16class Keymap : public BKeymap {
17public:
18								Keymap();
19								~Keymap();
20
21			void				DumpKeymap();
22
23			status_t			RetrieveCurrent();
24};
25
26
27#endif	// KEYMAP_H
28