xref: /haiku/src/preferences/sounds/HApp.h (revision 62f5ba006a08b0df30631375878effaf67ae5dbc)
1 /*
2  * Copyright 2003-2006, Haiku. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Atsushi Takamatsu
7  *		Jérôme Duval
8  *		Oliver Ruiz Dorantes
9  */
10 #ifndef HAPP_H
11 #define HAPP_H
12 
13 
14 #include <Application.h>
15 
16 
17 class HApp : public BApplication {
18 public:
19 								HApp();
20 	virtual						~HApp();
21 	virtual	void				AboutRequested();
22 };
23 
24 
25 #endif	// HAPP_H
26