comparison Classes/MySampleProjectAppDelegate.h @ 0:5ec52341f221

Initial commit
author Eric Wing <ewing@anscamobile.com>
date Fri, 29 Jul 2011 18:18:15 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:5ec52341f221
1 //
2 // MySampleProjectAppDelegate.h
3 // MySampleProject
4 //
5 // Created by Eric Wing on 7/29/11.
6 // Copyright 2011 __MyCompanyName__. All rights reserved.
7 //
8
9 #import <UIKit/UIKit.h>
10
11 @class MySampleProjectViewController;
12
13 @interface MySampleProjectAppDelegate : NSObject <UIApplicationDelegate> {
14 UIWindow *window;
15 MySampleProjectViewController *viewController;
16 }
17
18 @property (nonatomic, retain) IBOutlet UIWindow *window;
19 @property (nonatomic, retain) IBOutlet MySampleProjectViewController *viewController;
20
21 @end
22