forked from organicmaps/organicmaps
Add function to check reader's existing in FilesContainerR.
This commit is contained in:
parent
91909c8126
commit
d38ed958ee
2 changed files with 10 additions and 0 deletions
|
@ -60,6 +60,14 @@ FilesContainerR::ReaderT FilesContainerR::GetReader(Tag const & tag) const
|
|||
MYTHROW(Reader::OpenException, (tag));
|
||||
}
|
||||
|
||||
bool FilesContainerR::IsReaderExist(Tag const & tag) const
|
||||
{
|
||||
InfoContainer::const_iterator i =
|
||||
lower_bound(m_info.begin(), m_info.end(), tag, LessInfo());
|
||||
|
||||
return (i != m_info.end() && i->m_tag == tag);
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// FilesContainerW
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -90,6 +90,8 @@ public:
|
|||
|
||||
ReaderT GetReader(Tag const & tag) const;
|
||||
|
||||
bool IsReaderExist(Tag const & tag) const;
|
||||
|
||||
template <typename F> void ForEachTag(F f) const
|
||||
{
|
||||
for (size_t i = 0; i < m_info.size(); ++i)
|
||||
|
|
Loading…
Add table
Reference in a new issue