Added dynamic selector 'name'

This commit is contained in:
Constantin Shalnev 2015-09-30 17:05:13 +03:00
parent bdd1b883c3
commit 05a7d9cd34
2 changed files with 14 additions and 0 deletions

View file

@ -1 +1,2 @@
population
name

View file

@ -102,6 +102,15 @@ bool GetPopulation(FeatureType const & ft, uint32_t & population)
return true;
}
// Feature tag value evaluator for tag 'name'
bool GetName(FeatureType const & ft, string & name)
{
string intName;
ft.GetPreferredNames(name, intName);
return true;
}
// Add new tag value evaluator here
} // namespace
@ -128,6 +137,10 @@ unique_ptr<ISelector> ParseSelector(string const & str)
}
return make_unique<Selector<uint32_t>>(&GetPopulation, e.m_operator, static_cast<uint32_t>(value));
}
else if (e.m_tag == "name")
{
return make_unique<Selector<string>>(&GetName, e.m_operator, e.m_value);
}
// Add new tag here