docs/ikteam: Delete most files.
[haiku.git] / src / preferences / appearance / APRMain.cpp
blobc0d13b42ebd59239fe27e87ea2db76ce5d909ffe
1 /*
2 * Copyright 2002-2006, Haiku. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * DarkWyrm (darkwyrm@earthlink.net)
7 */
8 #include "APRMain.h"
9 #include "APRWindow.h"
10 #include <stdio.h>
11 #include "defs.h"
13 #include <Catalog.h>
14 #include <Locale.h>
16 APRApplication::APRApplication(void)
17 : BApplication(APPEARANCE_APP_SIGNATURE)
19 fWindow = new APRWindow(BRect(100, 100, 550, 420));
20 fWindow->Show();
23 int
24 main(int, char**)
26 APRApplication myApplication;
27 myApplication.Run();
29 return(0);