cocoaTouch/SplitViewRootController.h
author sheepluva
Wed, 07 Apr 2010 16:03:21 +0000
changeset 3322 80afcb97eb46
parent 3321 988e39ef3c20
child 3374 0d522416d97f
permissions -rw-r--r--
* INSTALL file: setting FreePascal to >= 2.2.0 * engine: some more value caching
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     1
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     2
//  SplitViewRootController.h
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     3
//  HedgewarsMobile
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     4
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     5
//  Created by Vittorio on 27/03/10.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     7
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     8
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    10
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    11
@class DetailViewController;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    12
@interface SplitViewRootController : UIViewController {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    13
    DetailViewController *detailViewController;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    14
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    15
3321
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3305
diff changeset
    16
@property (nonatomic,retain) DetailViewController *detailViewController;
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3305
diff changeset
    17
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    18
@end