| 322 | } |
| 323 | |
| 324 | void SearchAPI::EnableIndexingOfBookmarkGroup(kml::MarkGroupId const & groupId, bool enable) |
| 325 | { |
| 326 | if (enable) |
| 327 | m_indexableGroups.insert(groupId); |
| 328 | else |
| 329 | m_indexableGroups.erase(groupId); |
| 330 | |
| 331 | m_engine.EnableIndexingOfBookmarkGroup(KmlGroupIdToSearchGroupId(groupId), enable); |
| 332 | } |
| 333 | |
| 334 | ankerl::unordered_dense::set<kml::MarkGroupId> const & SearchAPI::GetIndexableGroups() const |
| 335 | { |