1*fce0c873SBarry Smith // 2*fce0c873SBarry Smith // iphoneAppDelegate.h 3*fce0c873SBarry Smith // iphone 4*fce0c873SBarry Smith // 5*fce0c873SBarry Smith // Created by Barry Smith on 5/12/10. 6*fce0c873SBarry Smith // Copyright __MyCompanyName__ 2010. All rights reserved. 7*fce0c873SBarry Smith // 8*fce0c873SBarry Smith 9*fce0c873SBarry Smith #import <UIKit/UIKit.h> 10*fce0c873SBarry Smith 11*fce0c873SBarry Smith @class iphoneViewController; 12*fce0c873SBarry Smith 13*fce0c873SBarry Smith @interface iphoneAppDelegate : NSObject <UIApplicationDelegate> { 14*fce0c873SBarry Smith UIWindow *window; 15*fce0c873SBarry Smith iphoneViewController *viewController; 16*fce0c873SBarry Smith } 17*fce0c873SBarry Smith 18*fce0c873SBarry Smith @property (nonatomic, retain) IBOutlet UIWindow *window; 19*fce0c873SBarry Smith @property (nonatomic, retain) IBOutlet iphoneViewController *viewController; 20*fce0c873SBarry Smith 21*fce0c873SBarry Smith @end 22*fce0c873SBarry Smith 23