Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:43:27

0001 // Copyright Daniel Wallin 2006.
0002 // Distributed under the Boost Software License, Version 1.0.
0003 // (See accompanying file LICENSE_1_0.txt or copy at
0004 // http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 #ifndef BOOST_PARAMETER_AUX_PREPROCESSOR_IMPL_FUNCTION_DISPATCH_TUPLE_HPP
0007 #define BOOST_PARAMETER_AUX_PREPROCESSOR_IMPL_FUNCTION_DISPATCH_TUPLE_HPP
0008 
0009 #include <boost/preprocessor/tuple/elem.hpp>
0010 
0011 // Accessor macros for the input tuple to the dispatch macros.
0012 #define BOOST_PARAMETER_FUNCTION_DISPATCH_BASE_NAME(x)                       \
0013     BOOST_PP_TUPLE_ELEM(5, 0, x)
0014 /**/
0015 
0016 #define BOOST_PARAMETER_FUNCTION_DISPATCH_SPLIT_ARGS(x)                      \
0017     BOOST_PP_TUPLE_ELEM(5, 1, x)
0018 /**/
0019 
0020 #define BOOST_PARAMETER_FUNCTION_DISPATCH_IS_MEMBER(x)                       \
0021     BOOST_PP_TUPLE_ELEM(5, 2, x)
0022 /**/
0023 
0024 #define BOOST_PARAMETER_FUNCTION_DISPATCH_IS_CONST(x)                        \
0025     BOOST_PP_TUPLE_ELEM(5, 3, x)
0026 /**/
0027 
0028 #define BOOST_PARAMETER_FUNCTION_DISPATCH_TAG_NAMESPACE(x)                   \
0029     BOOST_PP_TUPLE_ELEM(5, 4, x)
0030 /**/
0031 
0032 #endif  // include guard
0033