Files
rippled/include/xrpl/beast/insight/MeterImpl.h
2026-04-21 15:32:51 +00:00

21 lines
328 B
C++

#pragma once
#include <cstdint>
#include <memory>
namespace beast::insight {
class Meter;
class MeterImpl : public std::enable_shared_from_this<MeterImpl>
{
public:
using value_type = std::uint64_t;
virtual ~MeterImpl() = 0;
virtual void
increment(value_type amount) = 0;
};
} // namespace beast::insight