Files
rippled/include/xrpl/beast/insight/HookImpl.h
2026-04-21 15:32:51 +00:00

17 lines
272 B
C++

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