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

#import <UIKit/UIKit.h>
#import "ConfigViewController.h"
#import "FirstViewController.h"
#import "TabBarController.h"

@interface ipjsuaAppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate> {
    UIWindow		 *window;
    ConfigViewController *cfgView;
    FirstViewController  *mainView;
    TabBarController	 *tabBarController;
}

@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet TabBarController *tabBarController;
@property (nonatomic, retain) IBOutlet ConfigViewController *cfgView;
@property (nonatomic, retain) FirstViewController *mainView;


@end