summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuOutlineController.h
blob: 23159fba504a032cb7ef558c0bd27d5ddf99ccef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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