xref: /haiku/src/preferences/joysticks/Joysticks.h (revision 820dca4df6c7bf955c46e8f6521b9408f50b2900)
1 /*
2  * Copyright 2007 Haiku.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com
7  *		Ryan Leavengood, leavengood@gmail.com
8  */
9 #ifndef _JOYSTICKS_H
10 #define _JOYSTICKS_H
11 
12 
13 #include <Application.h>
14 
15 class JoyWin;
16 class BWindow;
17 
18 
19 class Joysticks : public BApplication
20 {
21 	public:
22 		Joysticks(const char *signature);
23 		~Joysticks();
24 
25 		virtual void	ReadyToRun();
26 		virtual bool	QuitRequested();
27 
28 	protected:
29 		JoyWin*			fJoywin;
30 
31 };
32 
33 
34 #endif	/* _JOYSTICKS_H */
35