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: e9d3258a90151daf88b95c09404a1381ac1b8e72 (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 withBac:(BookmarkAndCategory const &)bac;

@end

@interface SelectSetVC : MWMTableViewController

- (instancetype)initWithCategory:(NSString *)category
                             bac:(BookmarkAndCategory const &)bac
                        delegate:(id<MWMSelectSetDelegate>)delegate;

@end