summaryrefslogtreecommitdiffstats
path: root/Classes/PicCastAppDelegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/PicCastAppDelegate.h')
-rw-r--r--Classes/PicCastAppDelegate.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Classes/PicCastAppDelegate.h b/Classes/PicCastAppDelegate.h
new file mode 100644
index 0000000..a0efe4d
--- /dev/null
+++ b/Classes/PicCastAppDelegate.h
@@ -0,0 +1,21 @@
+//
+// PicCastAppDelegate.h
+// PicCast
+//
+// Created by Matthew Handler on 4/15/11.
+// Copyright 2011 Earl Industries. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+@interface PicCastAppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate> {
+ UIWindow *window;
+ UITabBarController *tabBarController;
+ UINavigationController *navigationController;
+}
+
+@property (nonatomic, retain) IBOutlet UIWindow *window;
+@property (nonatomic, retain) IBOutlet UITabBarController *tabBarController;
+@property (nonatomic, retain) IBOutlet UINavigationController *navigationController;
+
+@end