feature::Metadata::Has() for convenience.

This commit is contained in:
Alex Zolotarev 2016-02-15 15:36:56 +03:00 committed by Sergey Yershov
parent 96807088bf
commit 10acff2d6e

View file

@ -34,9 +34,15 @@ protected:
}
public:
bool Has(uint8_t type) const
{
auto const it = m_metadata.find(type);
return it != m_metadata.end();
}
string Get(uint8_t type) const
{
auto it = m_metadata.find(type);
auto const it = m_metadata.find(type);
return (it == m_metadata.end()) ? string() : it->second;
}