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_MEMBER_OBJECT_POINTER_HPP_INCLUDED
10#define BOOST_FT_MEMBER_OBJECT_POINTER_HPP_INCLUDED
11
12#include <boost/mpl/aux_/lambda_support.hpp>
13
14#include <boost/function_types/detail/synthesize.hpp>
15#include <boost/function_types/detail/to_sequence.hpp>
16
17namespace boost
18{
19 namespace function_types
20 {
21 template<typename Types>
22 struct member_object_pointer
23 : detail::synthesize_mop< typename detail::to_sequence<Types>::type >
24 {
25 BOOST_MPL_AUX_LAMBDA_SUPPORT(1,member_object_pointer,(Types))
26 };
27 }
28}
29
30#endif
31
32
33

source code of boost/boost/function_types/member_object_pointer.hpp