summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuDocRef.h
blob: 3741c69142c92c7fdd1d111346cf54deef1d059c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#import <Foundation/Foundation.h>

#include "mupdf/fitz.h"

@interface MuDocRef : NSObject
{
@public
	fz_document *doc;
	bool interactive;
}
-(id) initWithFilename:(char *)aFilename;
@end