summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/ipjsua/Classes/ipjsuaAppDelegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'pjsip-apps/src/ipjsua/Classes/ipjsuaAppDelegate.h')
-rw-r--r--pjsip-apps/src/ipjsua/Classes/ipjsuaAppDelegate.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/pjsip-apps/src/ipjsua/Classes/ipjsuaAppDelegate.h b/pjsip-apps/src/ipjsua/Classes/ipjsuaAppDelegate.h
new file mode 100644
index 00000000..2a230c9e
--- /dev/null
+++ b/pjsip-apps/src/ipjsua/Classes/ipjsuaAppDelegate.h
@@ -0,0 +1,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