[ios] add hasRecentlyDeletedBookmarks to the BM manager

Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
Kiryl Kaveryn 2024-05-31 23:31:17 +04:00 committed by Alexander Borsuk
parent 450db38aec
commit 8a5c52dcdb
2 changed files with 6 additions and 0 deletions

View file

@ -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")));

View file

@ -766,6 +766,10 @@ static KmlFileType convertFileTypeToCore(MWMKmlFileType fileType) {
}
}
- (BOOL)hasRecentlyDeletedBookmark {
return self.bm.HasRecentlyDeletedBookmark();
}
- (void)setCategory:(MWMMarkGroupID)groupId authorType:(MWMBookmarkGroupAuthorType)author
{
switch (author)