Clear classificator on loading.

This commit is contained in:
Yury Melnichek 2011-10-15 15:05:30 +02:00 committed by Alex Zolotarev
parent 5e141ce070
commit e0d37cf033
3 changed files with 8 additions and 0 deletions

View file

@ -508,3 +508,8 @@ void Classificator::ReadTypesMapping(string const & buffer)
m_i2t.Load(buffer);
m_t2i.Load(buffer);
}
void Classificator::Clear()
{
*this = Classificator();
}

View file

@ -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;

View file

@ -22,6 +22,7 @@ namespace classificator
string buffer;
Classificator & c = classif();
c.Clear();
// LOG(LINFO, ("Reading classificator"));
classificator.ReadAsString(buffer);