Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7640 views
1
#include "common.h"
2
#include "mupdf/pdf.h"
3
#import <Foundation/Foundation.h>
4
5
@interface MuAnnotation : NSObject
6
-(id) initFromAnnot:(fz_annot *)annot forPage:(fz_page *)page;
7
@property(readonly) int type;
8
@property(readonly) CGRect rect;
9
+(MuAnnotation *) annotFromAnnot:(fz_annot *)annot forPage:(fz_page *)page;
10
@end
11
12