This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/indexer/isolines_info.cpp
2020-02-12 14:37:51 +03:00

26 lines
650 B
C++

#include "indexer/isolines_info.hpp"
#include "indexer/data_source.hpp"
#include "defines.hpp"
namespace isolines
{
bool LoadIsolinesInfo(DataSource const & dataSource, MwmSet::MwmId const & mwmId,
IsolinesInfo & info)
{
auto const handle = dataSource.GetMwmHandleById(mwmId);
if (!handle.IsAlive())
return false;
auto const & value = *handle.GetValue();
if (!value.m_cont.IsExist(ISOLINES_INFO_FILE_TAG))
return false;
auto readerPtr = value.m_cont.GetReader(ISOLINES_INFO_FILE_TAG);
Deserializer deserializer(info);
return deserializer.Deserialize(*readerPtr.GetPtr());
}
} // namespace isolines