xref: /haiku/src/preferences/appearance/APRMain.cpp (revision be8fa2fb3088ab1921612b60f352dd9334b40b3d)
13d5da9f4SDarkWyrm /*
23d5da9f4SDarkWyrm  * Copyright 2002-2006, Haiku. All rights reserved.
33d5da9f4SDarkWyrm  * Distributed under the terms of the MIT License.
43d5da9f4SDarkWyrm  *
53d5da9f4SDarkWyrm  * Authors:
63d5da9f4SDarkWyrm  *		DarkWyrm (darkwyrm@earthlink.net)
73d5da9f4SDarkWyrm  */
8a10cf76eSAxel Dörfler #include "APRMain.h"
9a10cf76eSAxel Dörfler #include "APRWindow.h"
10a10cf76eSAxel Dörfler #include <stdio.h>
11a10cf76eSAxel Dörfler #include "defs.h"
12a10cf76eSAxel Dörfler 
13*b2543193SAdrien Destugues #include <Catalog.h>
14*b2543193SAdrien Destugues #include <Locale.h>
15*b2543193SAdrien Destugues 
APRApplication(void)16a10cf76eSAxel Dörfler APRApplication::APRApplication(void)
17a10cf76eSAxel Dörfler  :	BApplication(APPEARANCE_APP_SIGNATURE)
18a10cf76eSAxel Dörfler {
1981213459SStephan Aßmus 	fWindow = new APRWindow(BRect(100, 100, 550, 420));
20a10cf76eSAxel Dörfler 	fWindow->Show();
21a10cf76eSAxel Dörfler }
22a10cf76eSAxel Dörfler 
233d5da9f4SDarkWyrm int
main(int,char **)243d5da9f4SDarkWyrm main(int, char**)
25a10cf76eSAxel Dörfler {
26a10cf76eSAxel Dörfler 	APRApplication myApplication;
27a10cf76eSAxel Dörfler 	myApplication.Run();
28a10cf76eSAxel Dörfler 
29a10cf76eSAxel Dörfler 	return(0);
30a10cf76eSAxel Dörfler }
31