| 305 | } |
| 306 | |
| 307 | Bookmark const * GetBookmark(Framework & fm, m2::PointD const & pt) |
| 308 | { |
| 309 | auto const * mark = GetMark(fm, pt); |
| 310 | ASSERT(mark, ()); |
| 311 | ASSERT(mark->GetMarkType() == UserMark::BOOKMARK, ()); |
| 312 | return dynamic_cast<Bookmark const *>(mark); |
| 313 | } |
| 314 | |
| 315 | Bookmark const * GetBookmarkPxPoint(Framework & fm, m2::PointD const & pt) |
| 316 | { |
no test coverage detected