Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/boost/numeric/odeint/util/bind.hpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002  *     [begin_description]
0003  *     Boost bind pull the placeholders, _1, _2, ... into global
0004  *     namespace. This can conflict with the C++03 TR1 and C++11 
0005  *     std::placeholders. This header provides a workaround for 
0006  *     this problem.
0007  *     [end_description]
0008  *        
0009  *     Copyright 2012 Christoph Koke
0010  *     Copyright 2012 Karsten Ahnert
0011  *           
0012  *     Distributed under the Boost Software License, Version 1.0.
0013  *     (See accompanying file LICENSE_1_0.txt or
0014  *     copy at http://www.boost.org/LICENSE_1_0.txt)
0015  * */
0016 
0017 #ifndef BOOST_NUMERIC_ODEINT_UTIL_BIND_HPP_INCLUDED
0018 #define BOOST_NUMERIC_ODEINT_UTIL_BIND_HPP_INCLUDED
0019 
0020 #include <functional>
0021 
0022 namespace boost {
0023 namespace numeric {
0024 namespace odeint {
0025 namespace detail {
0026 
0027 using std::bind;
0028 using namespace std::placeholders;
0029 
0030 } //namespace detail
0031 } //namespace odeint
0032 } //namespace numeric
0033 } //namespace boost
0034 
0035 #endif // BOOST_NUMERIC_ODEINT_UTIL_BIND_HPP_INCLUDED