Files
rippled/include/xrpl/beast/insight/CounterImpl.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
361 B
C++

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