blob: 3e97cf7ffb37ca6f34fcf547a9da3c50233829ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|