diff options
Diffstat (limited to 'platform/ios/Classes/MuAnnotSelectView.h')
-rw-r--r-- | platform/ios/Classes/MuAnnotSelectView.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/platform/ios/Classes/MuAnnotSelectView.h b/platform/ios/Classes/MuAnnotSelectView.h new file mode 100644 index 00000000..3e97cf7f --- /dev/null +++ b/platform/ios/Classes/MuAnnotSelectView.h @@ -0,0 +1,19 @@ +// +// MuAnnotSelectView.h +// MuPDF +// +// Created by Paul Gardiner on 21/11/2013. +// Copyright (c) 2013 Artifex Software, Inc. All rights reserved. +// + +#import <UIKit/UIKit.h> +#import "MuAnnotation.h" + +@interface MuAnnotSelectView : UIView +{ + MuAnnotation *annot; + CGSize pageSize; + UIColor *color; +} +- (id) initWithAnnot:(MuAnnotation *)_annot pageSize:(CGSize)_pageSize; +@end |