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-09-01 17:35:48 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:42:48 +0300
commit34188aebc8d95040c55be06e26e7a58a01043019 (patch)
treeaf48fa60d03d4539c54c2148ec8cf59a3ba1abfe /map/bookmark.hpp
parent05d655892d34a3d4e370ff69cbc181378025f62e (diff)
Bookmarks find by point now returns also a category
Diffstat (limited to 'map/bookmark.hpp')
-rw-r--r--map/bookmark.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/map/bookmark.hpp b/map/bookmark.hpp
index 362be1f9fd..15e119ce29 100644
--- a/map/bookmark.hpp
+++ b/map/bookmark.hpp
@@ -56,3 +56,6 @@ public:
void LoadFromKML(ReaderPtr<Reader> const & reader);
void SaveToKML(ostream & s);
};
+
+/// Non-const category is needed to "edit" bookmark (actually, re-add it)
+typedef pair<BookmarkCategory *, Bookmark const *> BookmarkAndCategory;