/
renath
/
organicmaps
Обзор
Документация
Войти
/
renath
/
organicmaps
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
generator/processor_country.cpp
35 строк
1 KB
Alexander Borsuk
clang-format
24 июл 2025, 15:48
24 июл 2025, 15:48
15b66d5
Код
Авторство
О чём код?
#include "generator/processor_country.hpp" #include "generator/feature_builder.hpp" namespace generator { ProcessorCountry::ProcessorCountry(AffiliationInterfacePtr affiliations, std::shared_ptr<FeatureProcessorQueue> queue) : m_affiliations(std::move(affiliations)) , m_queue(std::move(queue)) { ASSERT(m_affiliations && m_queue, ()); m_processingChain = std::make_shared<RepresentationLayer>(); m_processingChain->Add(std::make_shared<PrepareFeatureLayer>()); m_processingChain->Add(std::make_shared<CountryLayer>()); m_affiliationsLayer = std::make_shared<AffiliationsFeatureLayer>(kAffiliationsBufferSize, m_affiliations, m_queue); m_processingChain->Add(m_affiliationsLayer); } std::shared_ptr<FeatureProcessorInterface> ProcessorCountry::Clone() const { return std::make_shared<ProcessorCountry>(m_affiliations, m_queue); } void ProcessorCountry::Process(feature::FeatureBuilder & feature) { m_processingChain->Handle(feature); } void ProcessorCountry::Finish() { m_affiliationsLayer->AddBufferToQueue(); } } // namespace generator