cocoaTouch/iPad/SplitViewRootController.h
author smxx
Thu, 01 Apr 2010 10:40:12 +0000
changeset 3234 668c7d0a00a6
parent 3113 2829ea0dd47c
permissions -rw-r--r--
Trainings: * Updated file properties to use native line breaks as well as removed spaces in file names

//
//  SplitViewRootController.h
//  HedgewarsMobile
//
//  Created by Vittorio on 27/03/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h>

@class MasterViewController;
@class DetailViewController;
@interface SplitViewRootController : UIViewController {
    UISplitViewController *splitViewController;
    MasterViewController *masterViewController;
    DetailViewController *detailViewController;
}

@property (nonatomic,retain) IBOutlet UISplitViewController *splitViewController;
@property (nonatomic,retain) IBOutlet MasterViewController *masterViewController;
@property (nonatomic,retain) IBOutlet DetailViewController *detailViewController;
@end