summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuAnnotation.h
blob: 0f37b9a5bb7b777213b705b4effc302aaac4af21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  MuAnnotation.h
//  MuPDF
//
//  Created by Paul Gardiner on 20/11/2013.
//  Copyright (c) 2013 Artifex Software, Inc. All rights reserved.
//

#include "common.h"
#include "mupdf/pdf.h"
#import <Foundation/Foundation.h>

@interface MuAnnotation : NSObject
{
	int type;
	CGRect rect;
}
-(id) initFromAnnot:(fz_annot *)annot forDoc:(fz_document *)doc;
@property(readonly) int type;
@property(readonly) CGRect rect;
+(MuAnnotation *) annotFromAnnot:(fz_annot *)annot forDoc:(fz_document *)doc;
@end