33 lines · plain
1// (C) Copyright John Maddock 2005.2// Use, modification and distribution are subject to the3// Boost Software License, Version 1.0. (See accompanying file4// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)5 6#ifndef BOOST_MATH_COMPLEX_INCLUDED7#define BOOST_MATH_COMPLEX_INCLUDED8 9#ifndef BOOST_MATH_COMPLEX_ASIN_INCLUDED10# include <boost/math/complex/asin.hpp>11#endif12#ifndef BOOST_MATH_COMPLEX_ASINH_INCLUDED13# include <boost/math/complex/asinh.hpp>14#endif15#ifndef BOOST_MATH_COMPLEX_ACOS_INCLUDED16# include <boost/math/complex/acos.hpp>17#endif18#ifndef BOOST_MATH_COMPLEX_ACOSH_INCLUDED19# include <boost/math/complex/acosh.hpp>20#endif21#ifndef BOOST_MATH_COMPLEX_ATAN_INCLUDED22# include <boost/math/complex/atan.hpp>23#endif24#ifndef BOOST_MATH_COMPLEX_ATANH_INCLUDED25# include <boost/math/complex/atanh.hpp>26#endif27#ifndef BOOST_MATH_COMPLEX_FABS_INCLUDED28# include <boost/math/complex/fabs.hpp>29#endif30 31 32#endif // BOOST_MATH_COMPLEX_INCLUDED33