blob: 2a230c9e6c3918421bfd2674401ee81b2df3df72 [file] [log] [blame]
Sauw Mingbf166442010-03-30 12:33:52 +00001//
2// ipjsuaAppDelegate.h
3// ipjsua
4//
5// Created by Liong Sauw Ming on 3/23/10.
6// Copyright Teluu Inc. (http://www.teluu.com) 2010. All rights reserved.
7//
8
9#import <UIKit/UIKit.h>
10#import "ConfigViewController.h"
11#import "FirstViewController.h"
12#import "TabBarController.h"
13
14@interface ipjsuaAppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate> {
15 UIWindow *window;
16 ConfigViewController *cfgView;
17 FirstViewController *mainView;
18 TabBarController *tabBarController;
19}
20
21@property (nonatomic, retain) IBOutlet UIWindow *window;
22@property (nonatomic, retain) IBOutlet TabBarController *tabBarController;
23@property (nonatomic, retain) IBOutlet ConfigViewController *cfgView;
24@property (nonatomic, retain) FirstViewController *mainView;
25
26
27@end