xref: /haiku/src/preferences/shortcuts/ShortcutsApp.h (revision 922e7ba1f3228e6f28db69b0ded8f86eb32dea17)
1 /*
2  * Copyright 1999-2009 Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Jeremy Friesner
7  *		Fredrik	Modéen
8  */
9 #ifndef ShortcutsApp_h
10 #define ShortcutsApp_h
11 
12 
13 #include <Application.h>
14 
15 
16 class ShortcutsApp : public BApplication {
17 public:
18 							ShortcutsApp();
19 							~ShortcutsApp();
20 	virtual	void			ReadyToRun();
21 };
22 
23 
24 #endif
25 
26