xref: /haiku/src/preferences/appearance/APRMain.h (revision 1acbe440b8dd798953bec31d18ee589aa3f71b73)
1 /*
2  * Copyright 2002-2006, Haiku. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		DarkWyrm (darkwyrm@earthlink.net)
7  */
8 #ifndef APR_MAIN_H
9 #define APR_MAIN_H
10 
11 #include <Application.h>
12 
13 class APRWindow;
14 
15 class APRApplication : public BApplication
16 {
17 public:
18 	APRApplication(void);
19 
20 private:
21 
22 	APRWindow *fWindow;
23 };
24 
25 #endif
26