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

MWMPlacePageButtonCell.h « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c6c282b80e439e1974bc45c9449d12829bd6a0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#import "MWMTableViewCell.h"
#import "MWMPlacePageEntity.h"
#import "MWMPlacePageData.h"

@class MWMPlacePageViewManager;

@protocol MWMPlacePageButtonsProtocol;

@interface MWMPlacePageButtonCell : MWMTableViewCell

- (void)config:(MWMPlacePageViewManager *)manager forType:(MWMPlacePageCellType)type NS_DEPRECATED_IOS(7_0, 8_0);

- (void)configForRow:(place_page::ButtonsRows)row
        withDelegate:(id<MWMPlacePageButtonsProtocol>)delegate NS_AVAILABLE_IOS(8_0);

- (void)setEnabled:(BOOL)enabled NS_AVAILABLE_IOS(8_0);
- (BOOL)isEnabled NS_AVAILABLE_IOS(8_0);

@end