1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/parameter/match.hpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,55 @@
1.4 +// Copyright David Abrahams 2005. Distributed under the Boost
1.5 +// Software License, Version 1.0. (See accompanying
1.6 +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
1.7 +#ifndef BOOST_PARAMETER_MATCH_DWA2005714_HPP
1.8 +# define BOOST_PARAMETER_MATCH_DWA2005714_HPP
1.9 +
1.10 +# include <boost/detail/workaround.hpp>
1.11 +# include <boost/preprocessor/seq/enum.hpp>
1.12 +
1.13 +# if BOOST_WORKAROUND(__MWERKS__, <= 0x3003)
1.14 +// Temporary version of BOOST_PP_SEQ_ENUM until Paul M. integrates the workaround.
1.15 +# define BOOST_PARAMETER_SEQ_ENUM_I(size,seq) BOOST_PP_CAT(BOOST_PP_SEQ_ENUM_, size) seq
1.16 +# define BOOST_PARAMETER_SEQ_ENUM(seq) BOOST_PARAMETER_SEQ_ENUM_I(BOOST_PP_SEQ_SIZE(seq), seq)
1.17 +# else
1.18 +# define BOOST_PARAMETER_SEQ_ENUM(seq) BOOST_PP_SEQ_ENUM(seq)
1.19 +# endif
1.20 +
1.21 +# if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
1.22 +
1.23 +# include <boost/parameter/config.hpp>
1.24 +# include <boost/parameter/aux_/void.hpp>
1.25 +# include <boost/preprocessor/arithmetic/sub.hpp>
1.26 +# include <boost/preprocessor/facilities/intercept.hpp>
1.27 +# include <boost/preprocessor/repetition/enum_trailing_params.hpp>
1.28 +
1.29 +# define BOOST_PARAMETER_MATCH_DEFAULTS(ArgTypes) \
1.30 + BOOST_PP_ENUM_TRAILING_PARAMS( \
1.31 + BOOST_PP_SUB( \
1.32 + BOOST_PARAMETER_MAX_ARITY \
1.33 + , BOOST_PP_SEQ_SIZE(ArgTypes) \
1.34 + ) \
1.35 + , ::boost::parameter::void_ BOOST_PP_INTERCEPT \
1.36 + )
1.37 +
1.38 +# else
1.39 +
1.40 +# define BOOST_PARAMETER_MATCH_DEFAULTS(ArgTypes)
1.41 +
1.42 +# endif
1.43 +
1.44 +//
1.45 +// Generates, e.g.
1.46 +//
1.47 +// typename dfs_params::match<A1,A2>::type name = dfs_params()
1.48 +//
1.49 +// with workarounds for Borland compatibility.
1.50 +//
1.51 +
1.52 +# define BOOST_PARAMETER_MATCH(ParameterSpec, ArgTypes, name) \
1.53 + typename ParameterSpec ::match< \
1.54 + BOOST_PARAMETER_SEQ_ENUM(ArgTypes) \
1.55 + BOOST_PARAMETER_MATCH_DEFAULTS(ArgTypes) \
1.56 + >::type name = ParameterSpec ()
1.57 +
1.58 +#endif // BOOST_PARAMETER_MATCH_DWA2005714_HPP