600
|
1 |
// (C) Copyright John Maddock 2005.
|
|
2 |
// Use, modification and distribution are subject to the
|
|
3 |
// Boost Software License, Version 1.0. (See accompanying file
|
|
4 |
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
5 |
|
|
6 |
|
|
7 |
#ifndef BOOST_TR1_COMPLEX_INCLUDED
|
|
8 |
# define BOOST_TR1_COMPLEX_INCLUDED
|
|
9 |
# ifndef BOOST_TR1_NO_RECURSION
|
|
10 |
# define BOOST_TR1_NO_RECURSION
|
|
11 |
# define BOOST_TR1_NO_COMPLEX_RECURSION
|
|
12 |
# endif
|
|
13 |
# include <boost/tr1/detail/config_all.hpp>
|
|
14 |
# ifdef BOOST_HAS_INCLUDE_NEXT
|
|
15 |
# include_next <complex>
|
|
16 |
# else
|
|
17 |
# include BOOST_TR1_STD_HEADER(complex)
|
|
18 |
# endif
|
|
19 |
# ifdef BOOST_TR1_NO_COMPLEX_RECURSION
|
|
20 |
# undef BOOST_TR1_NO_COMPLEX_RECURSION
|
|
21 |
# undef BOOST_TR1_NO_RECURSION
|
|
22 |
# endif
|
|
23 |
#endif
|
|
24 |
|
|
25 |
#if !defined(BOOST_TR1_FULL_COMPLEX_INCLUDED) && !defined(BOOST_TR1_NO_RECURSION)
|
|
26 |
# define BOOST_TR1_FULL_COMPLEX_INCLUDED
|
|
27 |
# define BOOST_TR1_NO_RECURSION
|
|
28 |
# include <boost/tr1/complex.hpp>
|
|
29 |
# undef BOOST_TR1_NO_RECURSION
|
|
30 |
#endif
|
|
31 |
|