Mercurial > xcodescriptingbridge
view Classes/MySampleProjectAppDelegate.h @ 3:d63043d62684
Minor fixes, clean ups, comments to make script more presentable.
author | Eric Wing <ewing@anscamobile.com> |
---|---|
date | Mon, 01 Aug 2011 15:49:45 -0700 |
parents | 5ec52341f221 |
children |
line wrap: on
line source
// // MySampleProjectAppDelegate.h // MySampleProject // // Created by Eric Wing on 7/29/11. // Copyright 2011 __MyCompanyName__. All rights reserved. // #import <UIKit/UIKit.h> @class MySampleProjectViewController; @interface MySampleProjectAppDelegate : NSObject <UIApplicationDelegate> { UIWindow *window; MySampleProjectViewController *viewController; } @property (nonatomic, retain) IBOutlet UIWindow *window; @property (nonatomic, retain) IBOutlet MySampleProjectViewController *viewController; @end