arg.hpp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #ifndef BOOST_BIND_ARG_HPP_INCLUDED
  2. #define BOOST_BIND_ARG_HPP_INCLUDED
  3. // MS compatible compilers support #pragma once
  4. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  5. # pragma once
  6. #endif
  7. //
  8. // bind/arg.hpp
  9. //
  10. // Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
  11. //
  12. // Distributed under the Boost Software License, Version 1.0. (See
  13. // accompanying file LICENSE_1_0.txt or copy at
  14. // http://www.boost.org/LICENSE_1_0.txt)
  15. //
  16. // See http://www.boost.org/libs/bind/bind.html for documentation.
  17. //
  18. #include <boost/config.hpp>
  19. #include <boost/is_placeholder.hpp>
  20. #include <boost/static_assert.hpp>
  21. namespace boost
  22. {
  23. template< int I > struct arg
  24. {
  25. BOOST_CONSTEXPR arg()
  26. {
  27. }
  28. template< class T > BOOST_CONSTEXPR arg( T const & /* t */ )
  29. {
  30. BOOST_STATIC_ASSERT( I == is_placeholder<T>::value );
  31. }
  32. };
  33. template< int I > BOOST_CONSTEXPR bool operator==( arg<I> const &, arg<I> const & )
  34. {
  35. return true;
  36. }
  37. #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  38. template< int I > struct is_placeholder< arg<I> >
  39. {
  40. enum _vt { value = I };
  41. };
  42. template< int I > struct is_placeholder< arg<I> (*) () >
  43. {
  44. enum _vt { value = I };
  45. };
  46. #endif
  47. } // namespace boost
  48. #endif // #ifndef BOOST_BIND_ARG_HPP_INCLUDED