1#import <Foundation/Foundation.h> 2 3#include "mupdf/fitz.h" 4 5@interface MuDocRef : NSObject 6{ 7@public 8 fz_document *doc; 9 bool interactive; 10} 11-(id) initWithFilename:(char *)aFilename; 12@end 13 14