mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-15 12:50:42 +02:00
16 lines
410 B
C++
16 lines
410 B
C++
#include"Boss/Mod/ChannelCreator/Main.hpp"
|
|
#include"Boss/Mod/ChannelCreator/Manager.hpp"
|
|
#include"Util/make_unique.hpp"
|
|
|
|
namespace Boss { namespace Mod { namespace ChannelCreator {
|
|
|
|
/* TODO Carpenter. */
|
|
struct Carpenter {};
|
|
|
|
Main::Main( S::Bus& bus
|
|
, Boss::Mod::ChannelCandidateInvestigator::Main& investigator
|
|
) : manager(Util::make_unique<Manager>(bus, investigator))
|
|
{ }
|
|
Main::~Main() { }
|
|
|
|
}}}
|