epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
| 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.com | 2eff7e2 | 2011-06-24 15:57:30 +0000 | [diff] [blame] | 8 | #import <UIKit/UIKit.h> |
| 9 | #import "SkUIRootViewController.h" |
| 10 | #import "SkUIDetailViewController.h" |
yangsu@google.com | 2e20c24 | 2011-07-07 19:26:42 +0000 | [diff] [blame] | 11 | |
yangsu@google.com | 2eff7e2 | 2011-06-24 15:57:30 +0000 | [diff] [blame] | 12 | @interface SkUISplitViewController : UISplitViewController <UITableViewDelegate, UISplitViewControllerDelegate> { |
yangsu@google.com | 2e20c24 | 2011-07-07 19:26:42 +0000 | [diff] [blame] | 13 | @private |
yangsu@google.com | 2eff7e2 | 2011-06-24 15:57:30 +0000 | [diff] [blame] | 14 | SkUIRootViewController* fRoot; |
| 15 | SkUIDetailViewController* fDetail; |
| 16 | } |
| 17 | @property (nonatomic, retain) IBOutlet SkUIRootViewController* fRoot; |
| 18 | @property (nonatomic, retain) IBOutlet SkUIDetailViewController* fDetail; |
| 19 | |
yangsu@google.com | 2eff7e2 | 2011-06-24 15:57:30 +0000 | [diff] [blame] | 20 | @end |