1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
/**
* \file NETGeographicLib/Accumulator.cpp
* \brief Implementation for NETGeographicLib::Accumulator class
*
* NETGeographicLib is copyright (c) Scott Heiman (2013)
* GeographicLib is Copyright (c) Charles Karney (2010-2012)
* <charles@karney.com> and licensed under the MIT/X11 License.
* For more information, see
* http://geographiclib.sourceforge.net/
**********************************************************************/
#include "stdafx.h"
#include "GeographicLib/Accumulator.hpp"
#include "Accumulator.h"
#include "NETGeographicLib.h"
using namespace NETGeographicLib;
//*****************************************************************************
Accumulator::!Accumulator(void)
{
if ( m_pAccumulator != NULL )
{
delete m_pAccumulator;
m_pAccumulator = NULL;
}
}
//*****************************************************************************
Accumulator::Accumulator(void)
{
try
{
m_pAccumulator = new GeographicLib::Accumulator<double>();
}
catch ( std::bad_alloc )
{
throw gcnew GeographicErr("Failed to allocate memory for a GeogrpicLib::Accumulator");
}
}
//*****************************************************************************
void Accumulator::Assign( double a )
{
m_pAccumulator->operator=( a);
}
//*****************************************************************************
double Accumulator::Result()
{
return m_pAccumulator->operator()();
}
//*****************************************************************************
void Accumulator::Sum( double a )
{
m_pAccumulator->operator+=( a );
}
//*****************************************************************************
void Accumulator::Multiply( int i )
{
m_pAccumulator->operator*=( i );
}
//*****************************************************************************
bool Accumulator::operator == ( Accumulator^ lhs, double a )
{
return lhs->m_pAccumulator->operator==( a );
}
//*****************************************************************************
bool Accumulator::operator != ( Accumulator^ lhs, double a )
{
return lhs->m_pAccumulator->operator!=( a );
}
//*****************************************************************************
bool Accumulator::operator < ( Accumulator^ lhs, double a )
{
return lhs->m_pAccumulator->operator<( a );
}
//*****************************************************************************
bool Accumulator::operator <= ( Accumulator^ lhs, double a )
{
return lhs->m_pAccumulator->operator<=( a );
}
//*****************************************************************************
bool Accumulator::operator > ( Accumulator^ lhs, double a )
{
return lhs->m_pAccumulator->operator>( a );
}
//*****************************************************************************
bool Accumulator::operator >= ( Accumulator^ lhs, double a )
{
return lhs->m_pAccumulator->operator>=( a );
}
|