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