mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
23 lines
354 B
C++
23 lines
354 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <memory>
|
|
|
|
namespace beast {
|
|
namespace 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 insight
|
|
} // namespace beast
|