/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
indexer/data_factory.cpp
17 строк
385 B
Maxim Pimenov
[coding] Changed the filenames of the FilesContainers to better reflect the class names.
20 сен 2019, 18:29
20 сен 2019, 18:29
ab23306
Код
Авторство
О чём код?
#include "indexer/data_factory.hpp" #include "coding/files_container.hpp" #include "defines.hpp" void IndexFactory::Load(FilesContainerR const & cont) { ReadVersion(cont, m_version); m_header.Load(cont); if (cont.IsExist(REGION_INFO_FILE_TAG)) { ReaderSource<FilesContainerR::TReader> src(cont.GetReader(REGION_INFO_FILE_TAG)); m_regionData.Deserialize(src); } }