2011-07-28 14:26:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2011-06-24 15:57:30 +00:00
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "SkUINavigationController.h"
|
2011-07-07 19:26:42 +00:00
|
|
|
|
2011-07-17 14:42:08 +00:00
|
|
|
@interface AppDelegate_iPhone : NSObject <UIApplicationDelegate> {
|
2011-07-07 19:26:42 +00:00
|
|
|
@private
|
2011-06-24 15:57:30 +00:00
|
|
|
UIWindow *window;
|
|
|
|
SkUINavigationController* fRoot;
|
|
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
|
|
|
@property (nonatomic, retain) IBOutlet SkUINavigationController* fRoot;
|
2011-07-07 19:26:42 +00:00
|
|
|
|
2011-06-24 15:57:30 +00:00
|
|
|
@end
|
|
|
|
|