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