diff options
Diffstat (limited to 'platform/ios/Classes/MuLibraryController.h')
-rw-r--r-- | platform/ios/Classes/MuLibraryController.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/ios/Classes/MuLibraryController.h b/platform/ios/Classes/MuLibraryController.h index 2bb7ff71..0f823d5d 100644 --- a/platform/ios/Classes/MuLibraryController.h +++ b/platform/ios/Classes/MuLibraryController.h @@ -13,11 +13,13 @@ #include "mupdf/fitz.h" +#import "MuDocRef.h" + @interface MuLibraryController : UITableViewController <UIActionSheetDelegate> { NSArray *files; NSTimer *timer; - fz_document *_doc; // temporaries for juggling password dialog + MuDocRef *doc; NSString *_filename; } - (void) openDocument: (NSString*)filename; |