mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-07 23:42:28 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
23 lines
368 B
C++
23 lines
368 B
C++
#pragma once
|
|
|
|
#include <chrono>
|
|
#include <memory>
|
|
|
|
namespace beast {
|
|
namespace insight {
|
|
|
|
class Event;
|
|
|
|
class EventImpl : public std::enable_shared_from_this<EventImpl>
|
|
{
|
|
public:
|
|
using value_type = std::chrono::milliseconds;
|
|
|
|
virtual ~EventImpl() = 0;
|
|
virtual void
|
|
notify(value_type const& value) = 0;
|
|
};
|
|
|
|
} // namespace insight
|
|
} // namespace beast
|