]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/function_types/include/boost/function_types/is_member_object_pointer.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / function_types / include / boost / function_types / is_member_object_pointer.hpp
1
2 // (C) Copyright Tobias Schwinger
3 //
4 // Use modification and distribution are subject to the boost Software License,
5 // Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt).
6
7 //------------------------------------------------------------------------------
8
9 #ifndef BOOST_FT_IS_MEMBER_OBJECT_POINTER_HPP_INCLUDED
10 #define BOOST_FT_IS_MEMBER_OBJECT_POINTER_HPP_INCLUDED
11
12 #include <boost/mpl/aux_/lambda_support.hpp>
13
14 #include <boost/function_types/components.hpp>
15
16 namespace boost
17 {
18 namespace function_types
19 {
20 template< typename T >
21 struct is_member_object_pointer
22 : function_types::detail::represents_impl
23 < function_types::components<T>
24 , detail::member_object_pointer_tag >
25 {
26 BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_member_object_pointer,(T))
27 };
28 }
29 }
30
31 #endif
32