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:
authorDarafei Praliaskouski <komzpa@gmail.com>2013-10-02 21:35:44 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:03:08 +0300
commitdbcfaf35b4928b3d90fad96860e2c52ac20632fa (patch)
tree008eef7b19e2c233c5a85c3c40c7db2af77eca75 /map/simple_render_policy.hpp
parentc63032339628eee4ad69eeae126388b8a69e73fa (diff)
[map] simple render policy for desktop usage
Diffstat (limited to 'map/simple_render_policy.hpp')
-rw-r--r--map/simple_render_policy.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/map/simple_render_policy.hpp b/map/simple_render_policy.hpp
index 90fb6e25aa..95b3e40a5a 100644
--- a/map/simple_render_policy.hpp
+++ b/map/simple_render_policy.hpp
@@ -4,9 +4,13 @@
class SimpleRenderPolicy : public RenderPolicy
{
+private:
+ shared_ptr<graphics::Overlay> m_overlay;
+
public:
SimpleRenderPolicy(Params const & p);
void DrawFrame(shared_ptr<PaintEvent> const & paintEvent,
ScreenBase const & screenBase);
+ graphics::Overlay * FrameOverlay() const;
};