blob: a113b93febb04bfa6818013584fc7b264cf19642 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "common.h"
#include "mupdf/pdf.h"
#import <Foundation/Foundation.h>
@interface MuAnnotation : NSObject
-(id) initFromAnnot:(fz_annot *)annot;
@property(readonly) int type;
@property(readonly) CGRect rect;
+(MuAnnotation *) annotFromAnnot:(fz_annot *)annot;
@end
|