blob: e19b0bc15ca69bb95f21587f970bf4a6ac96b29e [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
yangsu@google.com2eff7e22011-06-24 15:57:30 +00008#import <UIKit/UIKit.h>
9#import "SkUINavigationController.h"
yangsu@google.com2e20c242011-07-07 19:26:42 +000010
yangsu@google.comc5aeccd2011-07-17 14:42:08 +000011@interface AppDelegate_iPhone : NSObject <UIApplicationDelegate> {
yangsu@google.com2e20c242011-07-07 19:26:42 +000012@private
yangsu@google.com2eff7e22011-06-24 15:57:30 +000013 UIWindow *window;
14 SkUINavigationController* fRoot;
yangsu@google.com2eff7e22011-06-24 15:57:30 +000015}
yangsu@google.com2eff7e22011-06-24 15:57:30 +000016@property (nonatomic, retain) IBOutlet UIWindow *window;
17@property (nonatomic, retain) IBOutlet SkUINavigationController* fRoot;
yangsu@google.com2e20c242011-07-07 19:26:42 +000018
yangsu@google.com2eff7e22011-06-24 15:57:30 +000019@end