#pragma once #include #include namespace beast::insight { class HookImpl : public std::enable_shared_from_this { public: using HandlerType = std::function; virtual ~HookImpl() = 0; }; } // namespace beast::insight