Files
rippled/include/xrpl/beast/insight/EventImpl.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

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