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:
authorAlex Zolotarev <deathbaba@gmail.com>2012-11-16 18:51:43 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:46:59 +0300
commit61477088e1d1518ae3114f19af544c0e7c1de840 (patch)
tree1776fcad1052b0acd26bc438160f67203bf430ef /iphone/Maps/Classes/EAGLView.h
parent69b1a68976f74e5c3f07c57f9d875ff8f40bb94d (diff)
[ios] Fixed bug with rotation when bookmark is visible
Diffstat (limited to 'iphone/Maps/Classes/EAGLView.h')
-rw-r--r--iphone/Maps/Classes/EAGLView.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/iphone/Maps/Classes/EAGLView.h b/iphone/Maps/Classes/EAGLView.h
index 2585a3e77a..b57b9f7d63 100644
--- a/iphone/Maps/Classes/EAGLView.h
+++ b/iphone/Maps/Classes/EAGLView.h
@@ -2,6 +2,8 @@
#include "../../std/shared_ptr.hpp"
+@class BalloonView;
+
class VideoTimer;
class RenderPolicy;
@@ -34,6 +36,10 @@ namespace graphics
CGRect lastViewSize;
}
+@property(nonatomic, retain) BalloonView * balloonView;
+
- (void) initRenderPolicy;
+- (CGPoint) viewPoint2GlobalPoint:(CGPoint)pt;
+- (CGPoint) globalPoint2ViewPoint:(CGPoint)pt;
@end