// // MuLibraryController.h // MuPDF // // Copyright (c) 2013 Artifex Software, Inc. All rights reserved. // #import #undef ABS #undef MIN #undef MAX #include "mupdf/fitz.h" #import "MuDocRef.h" @interface MuLibraryController : UITableViewController { NSArray *files; NSTimer *timer; MuDocRef *doc; NSString *_filename; } - (void) openDocument: (NSString*)filename; - (void) askForPassword: (NSString*)prompt; - (void) onPasswordOkay; - (void) onPasswordCancel; - (void) reload; @end