author | sl@SLION-WIN7.fritz.box |
Fri, 15 Jun 2012 03:10:57 +0200 | |
changeset 0 | bde4ae8d615e |
permissions | -rw-r--r-- |
sl@0 | 1 |
#ifndef BOOST_BIND_ARG_HPP_INCLUDED |
sl@0 | 2 |
#define BOOST_BIND_ARG_HPP_INCLUDED |
sl@0 | 3 |
|
sl@0 | 4 |
// MS compatible compilers support #pragma once |
sl@0 | 5 |
|
sl@0 | 6 |
#if defined(_MSC_VER) && (_MSC_VER >= 1020) |
sl@0 | 7 |
# pragma once |
sl@0 | 8 |
#endif |
sl@0 | 9 |
|
sl@0 | 10 |
// |
sl@0 | 11 |
// bind/arg.hpp |
sl@0 | 12 |
// |
sl@0 | 13 |
// Copyright (c) 2002 Peter Dimov and Multi Media Ltd. |
sl@0 | 14 |
// |
sl@0 | 15 |
// Distributed under the Boost Software License, Version 1.0. (See |
sl@0 | 16 |
// accompanying file LICENSE_1_0.txt or copy at |
sl@0 | 17 |
// http://www.boost.org/LICENSE_1_0.txt) |
sl@0 | 18 |
// |
sl@0 | 19 |
// See http://www.boost.org/libs/bind/bind.html for documentation. |
sl@0 | 20 |
// |
sl@0 | 21 |
|
sl@0 | 22 |
namespace boost |
sl@0 | 23 |
{ |
sl@0 | 24 |
|
sl@0 | 25 |
template<int I> class arg |
sl@0 | 26 |
{ |
sl@0 | 27 |
}; |
sl@0 | 28 |
|
sl@0 | 29 |
template<int I> bool operator==(arg<I> const &, arg<I> const &) |
sl@0 | 30 |
{ |
sl@0 | 31 |
return true; |
sl@0 | 32 |
} |
sl@0 | 33 |
|
sl@0 | 34 |
} // namespace boost |
sl@0 | 35 |
|
sl@0 | 36 |
#endif // #ifndef BOOST_BIND_ARG_HPP_INCLUDED |