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