1#ifndef BEAST_INSIGHT_METER_H_INCLUDED 
    2#define BEAST_INSIGHT_METER_H_INCLUDED 
    4#include <xrpl/beast/insight/MeterImpl.h> 
A metric for measuring an integral value.
 
void increment(value_type amount) const
Increment the meter.
 
Meter()
Create a null metric.
 
std::shared_ptr< MeterImpl > m_impl
 
Meter(std::shared_ptr< MeterImpl > const &impl)
Create the metric reference the specified implementation.
 
Meter const & operator++(int) const
 
Meter const & operator+=(value_type amount) const
 
Meter const & operator++() const
 
std::shared_ptr< MeterImpl > const & impl() const