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

#import <UIKit/UIKit.h>

@class MuDocumentController;

@interface MuOutlineController : UITableViewController
{
	MuDocumentController *target;
	NSMutableArray *titles;
	NSMutableArray *pages;
}
- (id) initWithTarget: (id)aTarget titles: (NSMutableArray*)aTitles pages: (NSMutableArray*)aPages;
@end