xref: /haiku/src/preferences/keymap/KeymapApplication.cpp (revision 4f00613311d0bd6b70fa82ce19931c41f071ea4e)
1 // ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
2 //
3 //	Copyright (c) 2004, Haiku
4 //
5 //  This software is part of the Haiku distribution and is covered
6 //  by the Haiku license.
7 //
8 //
9 //  File:        KeymapApplication.cpp
10 //  Author:      Sandor Vroemisse, Jérôme Duval
11 //  Description: Keymap Preferences
12 //  Created :    July 12, 2004
13 //
14 // ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
15 
16 #include "KeymapApplication.h"
17 
18 KeymapApplication::KeymapApplication()
19 	:	BApplication( APP_SIGNATURE )
20 {
21 	// create the window
22 	fWindow = new KeymapWindow();
23 	fWindow->Show();
24 }
25 
26 void KeymapApplication::MessageReceived( BMessage * message )
27 {
28 	BApplication::MessageReceived( message );
29 }
30 
31 
32 int
33 main ()
34 {
35 	new KeymapApplication;
36 	be_app->Run();
37 	delete be_app;
38 	return B_OK;
39 }
40