00001 /** 00002 * \file Accumulator.cpp 00003 * \brief Implementation for GeographicLib::Accumulator class 00004 * 00005 * Copyright (c) Charles Karney (2013) <charles@karney.com> and licensed under 00006 * the MIT/X11 License. For more information, see 00007 * http://geographiclib.sourceforge.net/ 00008 **********************************************************************/ 00009 00010 #include <GeographicLib/Accumulator.hpp> 00011 00012 namespace GeographicLib { 00013 00014 /// \cond SKIP 00015 00016 // Need to instantiate Accumulator to get the code into the shared library 00017 // (without this, NETGeographic complains about not finding the == and != 00018 // operators). 00019 template class GEOGRAPHICLIB_EXPORT Accumulator<Math::real>; 00020 00021 /// \endcond 00022 00023 } // namespace GeographicLib