blob: 60cfa99de39e3cafab0122c2d9fb94604417c5c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
//
// MuDocRef.m
// MuPDF
//
// Copyright (c) 2013 Artifex Software, Inc. All rights reserved.
//
#include "common.h"
#import "MuDocRef.h"
@implementation MuDocRef
-(id) initWithFilename:(char *)aFilename;
{
self = [super init];
if (self)
{
dispatch_sync(queue, ^{});
doc = fz_open_document(ctx, aFilename);
if (!doc)
self = nil;
}
return self;
}
-(void) dealloc
{
__block fz_document *block_doc = doc;
dispatch_async(queue, ^{
fz_close_document(block_doc);
});
[super dealloc];
}
@end
|