indirect_traits.hpp 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. // Copyright David Abrahams 2002.
  2. // Distributed under the Boost Software License, Version 1.0. (See
  3. // accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef INDIRECT_TRAITS_DWA2002131_HPP
  6. # define INDIRECT_TRAITS_DWA2002131_HPP
  7. # include <boost/type_traits/is_function.hpp>
  8. # include <boost/type_traits/is_reference.hpp>
  9. # include <boost/type_traits/is_pointer.hpp>
  10. # include <boost/type_traits/is_class.hpp>
  11. # include <boost/type_traits/is_const.hpp>
  12. # include <boost/type_traits/is_volatile.hpp>
  13. # include <boost/type_traits/is_member_function_pointer.hpp>
  14. # include <boost/type_traits/is_member_pointer.hpp>
  15. # include <boost/type_traits/remove_cv.hpp>
  16. # include <boost/type_traits/remove_reference.hpp>
  17. # include <boost/type_traits/remove_pointer.hpp>
  18. # include <boost/detail/workaround.hpp>
  19. # include <boost/mpl/eval_if.hpp>
  20. # include <boost/mpl/if.hpp>
  21. # include <boost/mpl/bool.hpp>
  22. # include <boost/mpl/and.hpp>
  23. # include <boost/mpl/not.hpp>
  24. # include <boost/mpl/aux_/lambda_support.hpp>
  25. namespace boost { namespace detail {
  26. namespace indirect_traits {
  27. template <class T>
  28. struct is_reference_to_const : mpl::false_
  29. {
  30. };
  31. template <class T>
  32. struct is_reference_to_const<T const&> : mpl::true_
  33. {
  34. };
  35. # if defined(BOOST_MSVC) && _MSC_FULL_VER <= 13102140 // vc7.01 alpha workaround
  36. template<class T>
  37. struct is_reference_to_const<T const volatile&> : mpl::true_
  38. {
  39. };
  40. # endif
  41. template <class T>
  42. struct is_reference_to_function : mpl::false_
  43. {
  44. };
  45. template <class T>
  46. struct is_reference_to_function<T&> : is_function<T>
  47. {
  48. };
  49. template <class T>
  50. struct is_pointer_to_function : mpl::false_
  51. {
  52. };
  53. // There's no such thing as a pointer-to-cv-function, so we don't need
  54. // specializations for those
  55. template <class T>
  56. struct is_pointer_to_function<T*> : is_function<T>
  57. {
  58. };
  59. template <class T>
  60. struct is_reference_to_member_function_pointer_impl : mpl::false_
  61. {
  62. };
  63. template <class T>
  64. struct is_reference_to_member_function_pointer_impl<T&>
  65. : is_member_function_pointer<typename remove_cv<T>::type>
  66. {
  67. };
  68. template <class T>
  69. struct is_reference_to_member_function_pointer
  70. : is_reference_to_member_function_pointer_impl<T>
  71. {
  72. BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_reference_to_member_function_pointer,(T))
  73. };
  74. template <class T>
  75. struct is_reference_to_function_pointer_aux
  76. : mpl::and_<
  77. is_reference<T>
  78. , is_pointer_to_function<
  79. typename remove_cv<
  80. typename remove_reference<T>::type
  81. >::type
  82. >
  83. >
  84. {
  85. // There's no such thing as a pointer-to-cv-function, so we don't need specializations for those
  86. };
  87. template <class T>
  88. struct is_reference_to_function_pointer
  89. : mpl::if_<
  90. is_reference_to_function<T>
  91. , mpl::false_
  92. , is_reference_to_function_pointer_aux<T>
  93. >::type
  94. {
  95. };
  96. template <class T>
  97. struct is_reference_to_non_const
  98. : mpl::and_<
  99. is_reference<T>
  100. , mpl::not_<
  101. is_reference_to_const<T>
  102. >
  103. >
  104. {
  105. };
  106. template <class T>
  107. struct is_reference_to_volatile : mpl::false_
  108. {
  109. };
  110. template <class T>
  111. struct is_reference_to_volatile<T volatile&> : mpl::true_
  112. {
  113. };
  114. # if defined(BOOST_MSVC) && _MSC_FULL_VER <= 13102140 // vc7.01 alpha workaround
  115. template <class T>
  116. struct is_reference_to_volatile<T const volatile&> : mpl::true_
  117. {
  118. };
  119. # endif
  120. template <class T>
  121. struct is_reference_to_pointer : mpl::false_
  122. {
  123. };
  124. template <class T>
  125. struct is_reference_to_pointer<T*&> : mpl::true_
  126. {
  127. };
  128. template <class T>
  129. struct is_reference_to_pointer<T* const&> : mpl::true_
  130. {
  131. };
  132. template <class T>
  133. struct is_reference_to_pointer<T* volatile&> : mpl::true_
  134. {
  135. };
  136. template <class T>
  137. struct is_reference_to_pointer<T* const volatile&> : mpl::true_
  138. {
  139. };
  140. template <class T>
  141. struct is_reference_to_class
  142. : mpl::and_<
  143. is_reference<T>
  144. , is_class<
  145. typename remove_cv<
  146. typename remove_reference<T>::type
  147. >::type
  148. >
  149. >
  150. {
  151. BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_reference_to_class,(T))
  152. };
  153. template <class T>
  154. struct is_pointer_to_class
  155. : mpl::and_<
  156. is_pointer<T>
  157. , is_class<
  158. typename remove_cv<
  159. typename remove_pointer<T>::type
  160. >::type
  161. >
  162. >
  163. {
  164. BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_pointer_to_class,(T))
  165. };
  166. }
  167. using namespace indirect_traits;
  168. }} // namespace boost::python::detail
  169. #endif // INDIRECT_TRAITS_DWA2002131_HPP