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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'iphone/Maps/Classes/MWMPlacePageButtonCell.h')
-rw-r--r--iphone/Maps/Classes/MWMPlacePageButtonCell.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/iphone/Maps/Classes/MWMPlacePageButtonCell.h b/iphone/Maps/Classes/MWMPlacePageButtonCell.h
index e8007704d8..3c6c282b80 100644
--- a/iphone/Maps/Classes/MWMPlacePageButtonCell.h
+++ b/iphone/Maps/Classes/MWMPlacePageButtonCell.h
@@ -1,10 +1,19 @@
#import "MWMTableViewCell.h"
#import "MWMPlacePageEntity.h"
+#import "MWMPlacePageData.h"
@class MWMPlacePageViewManager;
+@protocol MWMPlacePageButtonsProtocol;
+
@interface MWMPlacePageButtonCell : MWMTableViewCell
-- (void)config:(MWMPlacePageViewManager *)manager forType:(MWMPlacePageCellType)type;
+- (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