blob: ceefcc59ec2132f7e74a57d84abf380325fed996 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// MuDocRef.h
// MuPDF
//
// Copyright (c) 2013 Artifex Software, Inc. All rights reserved.
//
#import <Foundation/Foundation.h>
#include "mupdf/fitz.h"
@interface MuDocRef : NSObject
{
@public
fz_document *doc;
}
-(id) initWithFilename:(char *)aFilename;
@end
|