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:
authorSergey Yershov <yershov@corp.mail.ru>2015-04-10 02:19:16 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:45:53 +0300
commit4049b124fb1b6fbf6719b9dbb4cf93f7e3521044 (patch)
treeb5a5a26d81ec2dc0c548afe537df64ddfe443c75 /map/animator.cpp
parent75d4905d6eb3b69b181096d507e5a34455ef9f48 (diff)
Fix include path for map
Diffstat (limited to 'map/animator.cpp')
-rw-r--r--map/animator.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/map/animator.cpp b/map/animator.cpp
index e520c4a4fa..e752ba9c9a 100644
--- a/map/animator.cpp
+++ b/map/animator.cpp
@@ -1,12 +1,12 @@
-#include "animator.hpp"
-#include "rotate_screen_task.hpp"
-#include "change_viewport_task.hpp"
-#include "move_screen_task.hpp"
-#include "framework.hpp"
+#include "map/animator.hpp"
+#include "map/rotate_screen_task.hpp"
+#include "map/change_viewport_task.hpp"
+#include "map/move_screen_task.hpp"
+#include "map/framework.hpp"
-#include "../anim/controller.hpp"
+#include "anim/controller.hpp"
-#include "../geometry/angles.hpp"
+#include "geometry/angles.hpp"
Animator::Animator(Framework * framework)
: m_framework(framework)