rippled
Loading...
Searching...
No Matches
HookImpl.h
1#pragma once
2
3#include <functional>
4#include <memory>
5
6namespace beast {
7namespace insight {
8
9class HookImpl : public std::enable_shared_from_this<HookImpl>
10{
11public:
12 using HandlerType = std::function<void(void)>;
13
14 virtual ~HookImpl() = 0;
15};
16
17} // namespace insight
18} // namespace beast