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