static bool operator<(Accumulator^lhs, double a)
Less than operator.
void Sum(double a)
Adds a value to the accumulator.
void Assign(double a)
Assigns a value to an accumulator.
GeographicLib::Accumulator< double > * m_pAccumulator
static bool operator==(Accumulator^lhs, double a)
Equality operator.
double Result()
Returns the accumulated value.
static bool operator!=(Accumulator^lhs, double a)
Inequality operator.
static bool operator>(Accumulator^lhs, double a)
Greater than operator.
void Multiply(int i)
Multiplication by an integer.
static bool operator<=(Accumulator^lhs, double a)
Less than or equal to operator.
static bool operator>=(Accumulator^lhs, double a)
Greater than or equal to operator.
~Accumulator()
Destructor calls the finalizer.
Accumulator(void)
Constructor.
.NET wrapper for GeographicLib::Accumulator.