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