rippled
Loading...
Searching...
No Matches
EventImpl.h
1#pragma once
2
3#include <chrono>
4#include <memory>
5
6namespace beast {
7namespace insight {
8
9class Event;
10
11class EventImpl : public std::enable_shared_from_this<EventImpl>
12{
13public:
15
16 virtual ~EventImpl() = 0;
17 virtual void
18 notify(value_type const& value) = 0;
19};
20
21} // namespace insight
22} // namespace beast
virtual void notify(value_type const &value)=0