forked from organicmaps/organicmaps
Clear classificator on loading.
This commit is contained in:
parent
5e141ce070
commit
e0d37cf033
3 changed files with 8 additions and 0 deletions
|
@ -508,3 +508,8 @@ void Classificator::ReadTypesMapping(string const & buffer)
|
|||
m_i2t.Load(buffer);
|
||||
m_t2i.Load(buffer);
|
||||
}
|
||||
|
||||
void Classificator::Clear()
|
||||
{
|
||||
*this = Classificator();
|
||||
}
|
||||
|
|
|
@ -221,6 +221,8 @@ public:
|
|||
void SortClassificator();
|
||||
//@}
|
||||
|
||||
void Clear();
|
||||
|
||||
/// Return type by path in classificator tree, example:
|
||||
/// path = ["natural", "caostline"].
|
||||
uint32_t GetTypeByPath(vector<string> const & path) const;
|
||||
|
|
|
@ -22,6 +22,7 @@ namespace classificator
|
|||
string buffer;
|
||||
|
||||
Classificator & c = classif();
|
||||
c.Clear();
|
||||
|
||||
// LOG(LINFO, ("Reading classificator"));
|
||||
classificator.ReadAsString(buffer);
|
||||
|
|
Loading…
Add table
Reference in a new issue