forked from organicmaps/organicmaps
[ios] add hasRecentlyDeletedBookmarks
to the BM manager
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
parent
450db38aec
commit
8a5c52dcdb
2 changed files with 6 additions and 0 deletions
|
@ -143,6 +143,8 @@ NS_SWIFT_NAME(BookmarksManager)
|
|||
- (void)moveTrack:(MWMTrackID)trackId
|
||||
toGroupId:(MWMMarkGroupID)groupId;
|
||||
|
||||
- (BOOL)hasRecentlyDeletedBookmark;
|
||||
|
||||
- (instancetype)init __attribute__((unavailable("call +manager instead")));
|
||||
- (instancetype)copy __attribute__((unavailable("call +manager instead")));
|
||||
- (instancetype)copyWithZone:(NSZone *)zone __attribute__((unavailable("call +manager instead")));
|
||||
|
|
|
@ -766,6 +766,10 @@ static KmlFileType convertFileTypeToCore(MWMKmlFileType fileType) {
|
|||
}
|
||||
}
|
||||
|
||||
- (BOOL)hasRecentlyDeletedBookmark {
|
||||
return self.bm.HasRecentlyDeletedBookmark();
|
||||
}
|
||||
|
||||
- (void)setCategory:(MWMMarkGroupID)groupId authorType:(MWMBookmarkGroupAuthorType)author
|
||||
{
|
||||
switch (author)
|
||||
|
|
Loading…
Add table
Reference in a new issue