summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/ipjsystest/Classes/RootViewController.h
blob: a76baf0a0f1822969dafb8400678fe28016a00b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  RootViewController.h
//  ipjsystest
//
//  Created by Liong Sauw Ming on 3/20/10.
//  Copyright Teluu Inc. (http://www.teluu.com) 2010. All rights reserved.
//

#import "TestViewController.h"

@interface RootViewController : UITableViewController {
    NSMutableArray *titles;
    NSMutableArray *menus;
    
    TestViewController *testView;
}

@property (nonatomic, retain) NSMutableArray *titles;
@property (nonatomic, retain) NSMutableArray *menus;
@property (nonatomic, retain) TestViewController *testView;

@end