mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
19 lines
298 B
C++
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
|