summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuInkView.h
blob: 98b7b28de7d21c30018566c1f6f1dfd4fa864d9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
//  MuInkView.h
//  MuPDF
//
//  Copyright (c) 2013 Artifex Software, Inc. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface MuInkView : UIView
{
	CGSize pageSize;
	NSMutableArray *curves;
	UIColor *color;
}

@property(readonly) NSArray *curves;

- (id) initWithPageSize:(CGSize)pageSize;

@end