// Copyright 2016 Klemens Morgenstern // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt // or copy at http://www.boost.org/LICENSE_1_0.txt) // For more information, see http://www.boost.org #ifndef BOOST_DLL_DETAIL_GET_MEM_FN_TYPE_HPP_ #define BOOST_DLL_DETAIL_GET_MEM_FN_TYPE_HPP_ namespace boost { namespace dll { namespace detail { template struct get_mem_fn_type; template struct get_mem_fn_type { typedef Return (Class::*mem_fn)(Args...); }; template struct get_mem_fn_type { typedef Return (Class::*mem_fn)(Args...) const ; }; template struct get_mem_fn_type { typedef Return (Class::*mem_fn)(Args...) volatile; }; template struct get_mem_fn_type { typedef Return (Class::*mem_fn)(Args...) const volatile ; }; }}} // namespace boost::dll::detail #endif /* BOOST_DLL_SMART_LIBRARY_HPP_ */