Files
rippled/include/xrpl/beast/insight/HookImpl.h
Bart 34ef577604 refactor: Replace include guards by '#pragma once' (#6322)
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
2026-02-04 09:50:21 -05:00

19 lines
298 B
C++

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