// // CellLocationsAppDelegate.m // CellLocations // // Created by Simon Urbanek on 4/22/11. // Copyright 2011 Simon Urbanek. All rights reserved. // #import "CellLocationsAppDelegate.h" #import "CellLocationsController.h" @implementation CellLocationsAppDelegate @synthesize window; - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { // Insert code here to initialize your application } - (void)applicationWillTerminate:(NSNotification *)notification { if ([CellLocationsController sharedController]) [[CellLocationsController sharedController] applicationWillTerminate:notification]; } @end