xref: /haiku/src/preferences/appearance/APRMain.cpp (revision 81213459891a2c1818db6ed9827e5b370ca7232f)
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 #include "APRMain.h"
9 #include "APRWindow.h"
10 #include <stdio.h>
11 #include "defs.h"
12 
13 APRApplication::APRApplication(void)
14  :	BApplication(APPEARANCE_APP_SIGNATURE)
15 {
16 	fWindow = new APRWindow(BRect(100, 100, 550, 420));
17 	fWindow->Show();
18 }
19 
20 int
21 main(int, char**)
22 {
23 	APRApplication myApplication;
24 	myApplication.Run();
25 
26 	return(0);
27 }
28