sl@0: // Copyright Daniel Wallin 2006. Use, modification and distribution is sl@0: // subject to the Boost Software License, Version 1.0. (See accompanying sl@0: // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) sl@0: sl@0: #ifndef BOOST_PARAMETER_NAME_060806_HPP sl@0: # define BOOST_PARAMETER_NAME_060806_HPP sl@0: sl@0: # include sl@0: # include sl@0: # include sl@0: # include sl@0: # include sl@0: # include sl@0: # include sl@0: # include sl@0: # include sl@0: sl@0: # if !defined(BOOST_NO_SFINAE) \ sl@0: && !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) sl@0: sl@0: # include sl@0: # include sl@0: sl@0: namespace boost { namespace parameter { namespace aux { sl@0: sl@0: // Tag type passed to MPL lambda. sl@0: struct lambda_tag; sl@0: sl@0: struct name_tag_base sl@0: {}; sl@0: sl@0: template sl@0: struct name_tag sl@0: {}; sl@0: sl@0: template sl@0: struct is_name_tag sl@0: : mpl::false_ sl@0: {}; sl@0: sl@0: }}} // namespace boost::parameter::aux sl@0: sl@0: namespace boost { namespace mpl { sl@0: sl@0: template sl@0: struct lambda< sl@0: T sl@0: , typename enable_if< sl@0: parameter::aux::is_name_tag, parameter::aux::lambda_tag sl@0: >::type sl@0: > sl@0: { sl@0: typedef true_ is_le; sl@0: typedef bind3< quote3, arg<2>, T, void> result_; sl@0: typedef result_ type; sl@0: }; sl@0: sl@0: }} // namespace boost::mpl sl@0: sl@0: # endif sl@0: sl@0: # if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) sl@0: # include sl@0: // From Paul Mensonides sl@0: # define BOOST_PARAMETER_IS_BINARY(x) \ sl@0: BOOST_PP_SPLIT(1, BOOST_PARAMETER_IS_BINARY_C x BOOST_PP_COMMA() 0) \ sl@0: /**/ sl@0: # define BOOST_PARAMETER_IS_BINARY_C(x,y) \ sl@0: ~, 1 BOOST_PP_RPAREN() \ sl@0: BOOST_PP_TUPLE_EAT(2) BOOST_PP_LPAREN() ~ \ sl@0: /**/ sl@0: # else sl@0: # include sl@0: # define BOOST_PARAMETER_IS_BINARY(x) BOOST_PP_IS_BINARY(x) sl@0: # endif sl@0: sl@0: # if BOOST_WORKAROUND(BOOST_MSVC, < 1300) sl@0: # define BOOST_PARAMETER_NAME_OBJECT(tag, name) \ sl@0: static ::boost::parameter::keyword& name \ sl@0: = ::boost::parameter::keyword::get(); sl@0: # else sl@0: # define BOOST_PARAMETER_NAME_OBJECT(tag, name) \ sl@0: namespace \ sl@0: { \ sl@0: ::boost::parameter::keyword& name \ sl@0: = ::boost::parameter::keyword::get(); \ sl@0: } sl@0: # endif sl@0: sl@0: # define BOOST_PARAMETER_BASIC_NAME(tag_namespace, tag, name) \ sl@0: namespace tag_namespace \ sl@0: { \ sl@0: struct tag \ sl@0: { \ sl@0: static char const* keyword_name() \ sl@0: { \ sl@0: return BOOST_PP_STRINGIZE(tag); \ sl@0: } \ sl@0: \ sl@0: typedef boost::parameter::value_type< \ sl@0: boost::mpl::_2, tag, boost::parameter::void_ \ sl@0: > _; \ sl@0: \ sl@0: typedef boost::parameter::value_type< \ sl@0: boost::mpl::_2, tag, boost::parameter::void_ \ sl@0: > _1; \ sl@0: }; \ sl@0: } \ sl@0: BOOST_PARAMETER_NAME_OBJECT(tag_namespace::tag, name) sl@0: sl@0: # define BOOST_PARAMETER_COMPLEX_NAME_TUPLE1(tag,namespace) \ sl@0: (tag, namespace), ~ sl@0: sl@0: # define BOOST_PARAMETER_COMPLEX_NAME_TUPLE(name) \ sl@0: BOOST_PP_TUPLE_ELEM(2, 0, (BOOST_PARAMETER_COMPLEX_NAME_TUPLE1 name)) sl@0: sl@0: # define BOOST_PARAMETER_COMPLEX_NAME_TAG(name) \ sl@0: BOOST_PP_TUPLE_ELEM(2, 0, BOOST_PARAMETER_COMPLEX_NAME_TUPLE(name)) sl@0: sl@0: # define BOOST_PARAMETER_COMPLEX_NAME_NAMESPACE(name) \ sl@0: BOOST_PP_TUPLE_ELEM(2, 1, BOOST_PARAMETER_COMPLEX_NAME_TUPLE(name)) sl@0: sl@0: # define BOOST_PARAMETER_COMPLEX_NAME(name) \ sl@0: BOOST_PARAMETER_BASIC_NAME( \ sl@0: BOOST_PARAMETER_COMPLEX_NAME_NAMESPACE(name) \ sl@0: , BOOST_PP_TUPLE_EAT(2) name \ sl@0: , BOOST_PARAMETER_COMPLEX_NAME_TAG(name) \ sl@0: ) \ sl@0: /**/ sl@0: sl@0: # define BOOST_PARAMETER_SIMPLE_NAME(name) \ sl@0: BOOST_PARAMETER_BASIC_NAME(tag, name, BOOST_PP_CAT(_, name)) sl@0: sl@0: # define BOOST_PARAMETER_NAME(name) \ sl@0: BOOST_PP_IIF( \ sl@0: BOOST_PARAMETER_IS_BINARY(name) \ sl@0: , BOOST_PARAMETER_COMPLEX_NAME \ sl@0: , BOOST_PARAMETER_SIMPLE_NAME \ sl@0: )(name) \ sl@0: /**/ sl@0: sl@0: sl@0: # define BOOST_PARAMETER_TEMPLATE_KEYWORD(name) \ sl@0: namespace tag \ sl@0: { \ sl@0: struct name; \ sl@0: } \ sl@0: template \ sl@0: struct name \ sl@0: : boost::parameter::template_keyword \ sl@0: {}; \ sl@0: /**/ sl@0: sl@0: #endif // BOOST_PARAMETER_NAME_060806_HPP sl@0: