// // BarcodeAppDelegate.m // Barcode // // Created by Simon Urbanek on 11/18/08. // Copyright __MyCompanyName__ 2008. All rights reserved. // #import "BarcodeAppDelegate.h" #import "BarcodeViewController.h" @implementation BarcodeAppDelegate @synthesize window; @synthesize viewController; - (void)applicationDidFinishLaunching:(UIApplication *)application { // Override point for customization after app launch [window addSubview:viewController.view]; [window makeKeyAndVisible]; } - (void)dealloc { [viewController release]; [window release]; [super dealloc]; } @end