xref: /haiku/src/preferences/shortcuts/ShortcutsApp.h (revision 6c3336782537a5618a4234cfb56e3b17dfee0f72)
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 
10 
11 #ifndef ShortcutsApp_h
12 #define ShortcutsApp_h
13 
14 #include <Application.h>
15 
16 class ShortcutsApp : public BApplication {
17 public:
18 						ShortcutsApp();
19 						~ShortcutsApp();
20 	virtual void 		ReadyToRun();
21 	virtual	void		AboutRequested();
22 };
23 
24 #endif
25