Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SelectSetVC.h « Bookmarks « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 697326e8da074a96a994b49a062a58be4c07a3c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import "MWMTableViewController.h"

struct BookmarkAndCategory;

@protocol MWMSelectSetDelegate <NSObject>

- (void)didSelectCategory:(NSString *)category withCategoryIndex:(size_t)categoryIndex;

@end

@interface SelectSetVC : MWMTableViewController

- (instancetype)initWithCategory:(NSString *)category
                   categoryIndex:(size_t)categoryIndex
                        delegate:(id<MWMSelectSetDelegate>)delegate;

@end