blob: eb54c690dc54ada3f2438ea590684c8afa924ceb [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 "SkUISplitViewController.h"
yangsu@google.com2e20c242011-07-07 19:26:42 +000010
yangsu@google.com2eff7e22011-06-24 15:57:30 +000011@interface AppDelegate_iPad : NSObject <UIApplicationDelegate> {
yangsu@google.com2e20c242011-07-07 19:26:42 +000012@private;
yangsu@google.com2eff7e22011-06-24 15:57:30 +000013 UIWindow* window;
14 SkUISplitViewController* splitViewController;
15}
yangsu@google.com2eff7e22011-06-24 15:57:30 +000016@property (nonatomic, retain) IBOutlet UIWindow* window;
17@property (nonatomic, retain) IBOutlet SkUISplitViewController* splitViewController;
18
19@end