xref: /haiku/src/preferences/shortcuts/ShortcutsApp.h (revision c90684742e7361651849be4116d0e5de3a817194)
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 	virtual	void			AboutRequested();
22 };
23 
24 
25 #endif
26 
27