sl@0
|
1 |
// Boost.Function library
|
sl@0
|
2 |
|
sl@0
|
3 |
// Copyright Douglas Gregor 2002-2003. Use, modification and
|
sl@0
|
4 |
// distribution is subject to the Boost Software License, Version
|
sl@0
|
5 |
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
sl@0
|
6 |
// http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
7 |
|
sl@0
|
8 |
// For more information, see http://www.boost.org
|
sl@0
|
9 |
|
sl@0
|
10 |
#ifndef BOOST_FUNCTION_PROLOGUE_HPP
|
sl@0
|
11 |
#define BOOST_FUNCTION_PROLOGUE_HPP
|
sl@0
|
12 |
# include <cassert>
|
sl@0
|
13 |
# include <algorithm>
|
sl@0
|
14 |
# include <boost/throw_exception.hpp>
|
sl@0
|
15 |
# include <boost/config.hpp>
|
sl@0
|
16 |
# include <boost/function/function_base.hpp>
|
sl@0
|
17 |
# include <boost/mem_fn.hpp>
|
sl@0
|
18 |
# include <boost/type_traits/is_integral.hpp>
|
sl@0
|
19 |
# include <boost/preprocessor/enum.hpp>
|
sl@0
|
20 |
# include <boost/preprocessor/enum_params.hpp>
|
sl@0
|
21 |
# include <boost/preprocessor/cat.hpp>
|
sl@0
|
22 |
# include <boost/preprocessor/repeat.hpp>
|
sl@0
|
23 |
# include <boost/preprocessor/inc.hpp>
|
sl@0
|
24 |
#endif // BOOST_FUNCTION_PROLOGUE_HPP
|