diff options
Diffstat (limited to 'platform/ios/Classes/MuPrintPageRenderer.h')
-rw-r--r-- | platform/ios/Classes/MuPrintPageRenderer.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/platform/ios/Classes/MuPrintPageRenderer.h b/platform/ios/Classes/MuPrintPageRenderer.h new file mode 100644 index 00000000..44d42af0 --- /dev/null +++ b/platform/ios/Classes/MuPrintPageRenderer.h @@ -0,0 +1,18 @@ +// +// MuPrintPageRenderer.h +// MuPDF +// +// Copyright (c) 2014 Artifex Software, Inc. All rights reserved. +// + +#import <UIKit/UIKit.h> +#import <MuDocRef.h> + +@interface MuPrintPageRenderer : UIPrintPageRenderer +{ + MuDocRef *docRef; +} + +-(id) initWithDocRef:(MuDocRef *) docRef; + +@end |