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 13a10cf76eSAxel Dörfler APRApplication::APRApplication(void) 14a10cf76eSAxel Dörfler : BApplication(APPEARANCE_APP_SIGNATURE) 15a10cf76eSAxel Dörfler { 16*81213459SStephan Aßmus fWindow = new APRWindow(BRect(100, 100, 550, 420)); 17a10cf76eSAxel Dörfler fWindow->Show(); 18a10cf76eSAxel Dörfler } 19a10cf76eSAxel Dörfler 203d5da9f4SDarkWyrm int 213d5da9f4SDarkWyrm main(int, char**) 22a10cf76eSAxel Dörfler { 23a10cf76eSAxel Dörfler APRApplication myApplication; 24a10cf76eSAxel Dörfler myApplication.Run(); 25a10cf76eSAxel Dörfler 26a10cf76eSAxel Dörfler return(0); 27a10cf76eSAxel Dörfler } 28