73 using hook_type =
Hook<Args...>;
74 using callback_type =
typename hook_type::callback_type;
76 HookRegistry(hook_type& hook) : m_hook(hook) {}
78 void operator=(callback_type&& cb)
80 m_hook = std::move(cb);
83 void operator=(
const callback_type& cb)