Kayak flow.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako
2023-06-30 14:10:46 -03:00
committed by Konstantin Pastbin
parent 556a474fda
commit e7c04c5459
20 changed files with 520 additions and 299 deletions

View File

@@ -141,6 +141,7 @@ void RawGenerator::GenerateCoasts()
void RawGenerator::GenerateCustom(std::shared_ptr<TranslatorInterface> const & translator)
{
CHECK(translator, ());
m_translators->Append(translator);
}
@@ -148,6 +149,7 @@ void RawGenerator::GenerateCustom(
std::shared_ptr<TranslatorInterface> const & translator,
std::shared_ptr<FinalProcessorIntermediateMwmInterface> const & finalProcessor)
{
CHECK(translator && finalProcessor, ());
m_translators->Append(translator);
m_finalProcessors.emplace(finalProcessor);
}