//
//  BookmarksAppDelegate.m
//  Bookmarks
//
//  Created by Lieven Dekeyser on 10/12/09.
//  Copyright Lieven Dekeyser 2009. All rights reserved.
//

#import "BookmarksAppDelegate.h"
#import "BookmarksViewController.h"

@implementation BookmarksAppDelegate

@synthesize window;


- (void)applicationDidFinishLaunching:(UIApplication *)application
{    
	BookmarksViewController * bookmarksController = [[[BookmarksViewController alloc] init] autorelease];
	
	navigationController = [[UINavigationController alloc] initWithRootViewController:bookmarksController];
	
	[window addSubview:navigationController.view];
	
    [window makeKeyAndVisible];
}


- (void)dealloc {
    [window release];
    [super dealloc];
}


@end
