summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuAnnotation.h
blob: 6f8e9da32dbf90b7ef8d394866bc83ed4acf95a6 (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
-(instancetype) initFromAnnot:(fz_annot *)annot;
@property(readonly) int type;
@property(readonly) CGRect rect;
+(MuAnnotation *) annotFromAnnot:(fz_annot *)annot;
@end