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

#import <UIKit/UIKit.h>
#import "MuDocRef.h"
#import "MuPageView.h"

@interface MuPageViewReflow : UIWebView <UIWebViewDelegate,MuPageView>
{
	int number;
	float scale;
}

-(id) initWithFrame:(CGRect)frame document:(MuDocRef *)aDoc page:(int)aNumber;

@end