forked from boostorg/bind
_N placeholders moved to a separate header.
[SVN r12573]
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
//
|
//
|
||||||
// bind.hpp - binds function objects to arguments
|
// bind.hpp - binds function objects to arguments
|
||||||
//
|
//
|
||||||
// Copyright (c) 2001 Peter Dimov and Multi Media Ltd.
|
// Copyright (c) 2001, 2002 Peter Dimov and Multi Media Ltd.
|
||||||
// Copyright (c) 2001 David Abrahams
|
// Copyright (c) 2001 David Abrahams
|
||||||
//
|
//
|
||||||
// Permission to copy, use, modify, sell and distribute this software
|
// Permission to copy, use, modify, sell and distribute this software
|
||||||
@@ -22,6 +22,7 @@
|
|||||||
#include <boost/config.hpp>
|
#include <boost/config.hpp>
|
||||||
#include <boost/ref.hpp>
|
#include <boost/ref.hpp>
|
||||||
#include <boost/mem_fn.hpp>
|
#include <boost/mem_fn.hpp>
|
||||||
|
#include <boost/bind/arg.hpp>
|
||||||
|
|
||||||
// Borland-specific bug, visit_each() silently fails to produce code
|
// Borland-specific bug, visit_each() silently fails to produce code
|
||||||
|
|
||||||
@@ -80,10 +81,6 @@ private:
|
|||||||
T t_;
|
T t_;
|
||||||
};
|
};
|
||||||
|
|
||||||
// arg
|
|
||||||
|
|
||||||
template<int I> class arg {};
|
|
||||||
|
|
||||||
// type
|
// type
|
||||||
|
|
||||||
template<class T> class type {};
|
template<class T> class type {};
|
||||||
@@ -1300,18 +1297,11 @@ template<class F, class A1, class A2, class A3, class A4, class A5, class A6, cl
|
|||||||
|
|
||||||
} // namespace boost
|
} // namespace boost
|
||||||
|
|
||||||
namespace
|
#ifndef BOOST_BIND_NO_PLACEHOLDERS
|
||||||
{
|
|
||||||
boost::_bi::arg<1> _1;
|
# include <boost/bind/placeholders.hpp>
|
||||||
boost::_bi::arg<2> _2;
|
|
||||||
boost::_bi::arg<3> _3;
|
#endif
|
||||||
boost::_bi::arg<4> _4;
|
|
||||||
boost::_bi::arg<5> _5;
|
|
||||||
boost::_bi::arg<6> _6;
|
|
||||||
boost::_bi::arg<7> _7;
|
|
||||||
boost::_bi::arg<8> _8;
|
|
||||||
boost::_bi::arg<9> _9;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef BOOST_MSVC
|
#ifdef BOOST_MSVC
|
||||||
# pragma warning(default: 4512) // assignment operator could not be generated
|
# pragma warning(default: 4512) // assignment operator could not be generated
|
||||||
|
30
include/boost/bind/arg.hpp
Normal file
30
include/boost/bind/arg.hpp
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
#ifndef BOOST_BIND_ARG_HPP_INCLUDED
|
||||||
|
#define BOOST_BIND_ARG_HPP_INCLUDED
|
||||||
|
|
||||||
|
#if _MSC_VER >= 1020
|
||||||
|
#pragma once
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//
|
||||||
|
// bind/arg.hpp
|
||||||
|
//
|
||||||
|
// Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
|
||||||
|
//
|
||||||
|
// Permission to copy, use, modify, sell and distribute this software
|
||||||
|
// is granted provided this copyright notice appears in all copies.
|
||||||
|
// This software is provided "as is" without express or implied
|
||||||
|
// warranty, and with no claim as to its suitability for any purpose.
|
||||||
|
//
|
||||||
|
// See http://www.boost.org/libs/bind/bind.html for documentation.
|
||||||
|
//
|
||||||
|
|
||||||
|
namespace boost
|
||||||
|
{
|
||||||
|
|
||||||
|
template<int I> class arg
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace boost
|
||||||
|
|
||||||
|
#endif // #ifndef BOOST_BIND_ARG_HPP_INCLUDED
|
36
include/boost/bind/placeholders.hpp
Normal file
36
include/boost/bind/placeholders.hpp
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
#ifndef BOOST_BIND_PLACEHOLDERS_HPP_INCLUDED
|
||||||
|
#define BOOST_BIND_PLACEHOLDERS_HPP_INCLUDED
|
||||||
|
|
||||||
|
#if _MSC_VER >= 1020
|
||||||
|
#pragma once
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//
|
||||||
|
// bind/placeholders.hpp - _N definitions
|
||||||
|
//
|
||||||
|
// Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
|
||||||
|
//
|
||||||
|
// Permission to copy, use, modify, sell and distribute this software
|
||||||
|
// is granted provided this copyright notice appears in all copies.
|
||||||
|
// This software is provided "as is" without express or implied
|
||||||
|
// warranty, and with no claim as to its suitability for any purpose.
|
||||||
|
//
|
||||||
|
// See http://www.boost.org/libs/bind/bind.html for documentation.
|
||||||
|
//
|
||||||
|
|
||||||
|
#include <boost/bind/arg.hpp>
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
|
boost::arg<1> _1;
|
||||||
|
boost::arg<2> _2;
|
||||||
|
boost::arg<3> _3;
|
||||||
|
boost::arg<4> _4;
|
||||||
|
boost::arg<5> _5;
|
||||||
|
boost::arg<6> _6;
|
||||||
|
boost::arg<7> _7;
|
||||||
|
boost::arg<8> _8;
|
||||||
|
boost::arg<9> _9;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // #ifndef BOOST_BIND_PLACEHOLDERS_HPP_INCLUDED
|
Reference in New Issue
Block a user