Boss/Mod/ChannelCreator/Carpenter.cpp: Implement actual channel creation.

This commit is contained in:
ZmnSCPxj jxPCSnmZ 2020-09-17 14:00:05 +08:00
parent 8ec3d11940
commit 7b44afbf6c
10 changed files with 343 additions and 8 deletions

View file

@ -96,7 +96,7 @@ std::shared_ptr<void> all( std::ostream& cout
auto investigator = all->install< ChannelCandidateInvestigator::Main
>(bus, *imon);
all->install<ChannelCreationDecider>(bus);
all->install<ChannelCreator::Main>(bus, *investigator);
all->install<ChannelCreator::Main>(bus, *waiter, *investigator);
return all;
}