blob: 2fa62ba32d3b0d894259a15ae9c6d77b39425602 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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
|