os/ossrv/ossrv_pub/boost_apis/boost/bind/arg.hpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/bind/arg.hpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,36 @@
     1.4 +#ifndef BOOST_BIND_ARG_HPP_INCLUDED
     1.5 +#define BOOST_BIND_ARG_HPP_INCLUDED
     1.6 +
     1.7 +// MS compatible compilers support #pragma once
     1.8 +
     1.9 +#if defined(_MSC_VER) && (_MSC_VER >= 1020)
    1.10 +# pragma once
    1.11 +#endif
    1.12 +
    1.13 +//
    1.14 +//  bind/arg.hpp
    1.15 +//
    1.16 +//  Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
    1.17 +//
    1.18 +// Distributed under the Boost Software License, Version 1.0. (See
    1.19 +// accompanying file LICENSE_1_0.txt or copy at
    1.20 +// http://www.boost.org/LICENSE_1_0.txt)
    1.21 +//
    1.22 +//  See http://www.boost.org/libs/bind/bind.html for documentation.
    1.23 +//
    1.24 +
    1.25 +namespace boost
    1.26 +{
    1.27 +
    1.28 +template<int I> class arg
    1.29 +{
    1.30 +};
    1.31 +
    1.32 +template<int I> bool operator==(arg<I> const &, arg<I> const &)
    1.33 +{
    1.34 +    return true;
    1.35 +}
    1.36 +
    1.37 +} // namespace boost
    1.38 +
    1.39 +#endif // #ifndef BOOST_BIND_ARG_HPP_INCLUDED