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:
authorVladiMihaylenko <vxmihaylenko@gmail.com>2015-04-17 18:48:43 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:38 +0300
commit9d2141ae12860ba6f587c97ca31d3986be2a4b51 (patch)
tree6bf88c44032eb0cdb9adea1698d355b43f30e44e /iphone/Maps/Classes/MWMPlacePageViewManager.h
parent628476581b9783b865eeda3ba8a274bfc8086f98 (diff)
[ios] iPhone landscape placepage
Diffstat (limited to 'iphone/Maps/Classes/MWMPlacePageViewManager.h')
-rw-r--r--iphone/Maps/Classes/MWMPlacePageViewManager.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/iphone/Maps/Classes/MWMPlacePageViewManager.h b/iphone/Maps/Classes/MWMPlacePageViewManager.h
new file mode 100644
index 0000000000..7bb8649335
--- /dev/null
+++ b/iphone/Maps/Classes/MWMPlacePageViewManager.h
@@ -0,0 +1,22 @@
+//
+// MWMPlacePageViewManager.h
+// Maps
+//
+// Created by v.mikhaylenko on 23.04.15.
+// Copyright (c) 2015 MapsWithMe. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+
+#include "map/user_mark.hpp"
+
+@interface MWMPlacePageViewManager : NSObject
+
+@property (weak, nonatomic, readonly) UIViewController *ownerViewController;
+
+- (instancetype)initWithViewController:(UIViewController *)viewController;
+- (void)showPlacePageWithUserMark:(std::unique_ptr<UserMarkCopy>)userMark;
+- (void)dismissPlacePage;
+- (void)layoutPlacePage;
+
+@end