11 class CatchEventBase :
public ComponentBase {
14 CatchEventBase(std::function<
bool(Event)> on_event)
15 : on_event_(std::move(on_event)) {}
18 bool OnEvent(Event event)
override {
26 std::function<bool(Event)> on_event_;
45 std::function<
bool(
Event event)> on_event) {
46 auto out = Make<CatchEventBase>(std::move(on_event));
47 out->Add(std::move(child));