summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuAppDelegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/Classes/MuAppDelegate.h')
-rw-r--r--platform/ios/Classes/MuAppDelegate.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/platform/ios/Classes/MuAppDelegate.h b/platform/ios/Classes/MuAppDelegate.h
new file mode 100644
index 00000000..6131a328
--- /dev/null
+++ b/platform/ios/Classes/MuAppDelegate.h
@@ -0,0 +1,18 @@
+//
+// MuAppDelegate.h
+// MuPDF
+//
+// Copyright (c) 2013 Artifex Software, Inc. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+#import "MuLibraryController.h"
+
+@interface MuAppDelegate : NSObject <UIApplicationDelegate, UINavigationControllerDelegate>
+{
+ UIWindow *window;
+ UINavigationController *navigator;
+ MuLibraryController *library;
+}
+@end