![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
BOOST_PP_ENUM_PARAMS_WITH_DEFAULTSBoost , ,
The BOOST_PP_ENUM_PARAMS_WITH_DEFAULTS macro generates a comma-separated list of parameters with default arguments.
Usage
BOOST_PP_ENUM_PARAMS_WITH_DEFAULTS(count, param, def)
Arguments
Remarks
This macro expands to the comma-separated sequence:
param ## 0 = def ## 0, param ## 1 = def ## 1, ... param ## count - 1 = def ## count - 1
Previously, this macro could not be used recursively inside BOOST_PP_REPEAT.
This limitation no longer exists, as the library can automatically detect the next available repetition depth.
This macro is deprecated.
It only exists for backward compatibility.
Use BOOST_PP_ENUM_BINARY_PARAMS instead:
BOOST_PP_ENUM_BINARY_PARAMS(count, param, = def)
See AlsoRequirementsSample Code#include <boost/preprocessor/repetition/enum_params_with_defaults.hpp> BOOST_PP_ENUM_PARAMS_WITH_DEFAULTS(3, class T, U) // expands to class T0 = U0, class T1 = U1, class T2 = U2 BOOST_PP_ENUM_BINARY_PARAMS(3, class T, = U) // expands to class T0 = U0, class T1 = U1, class T2 = U2
© Copyright Housemarque Oy 2002
© Copyright Paul Mensonides 2002
Распространяется в соответствии с лицензией Boost Software License, Version 1.0. (См. сопроводительный файл)LICENSE_1_0.txtили копия наwww.boost.org/LICENSE_1_0.txt Статья BOOST_PP_ENUM_PARAMS_WITH_DEFAULTS раздела может быть полезна для разработчиков на c++ и boost. Материалы статей собраны из открытых источников, владелец сайта не претендует на авторство. Там где авторство установить не удалось, материал подаётся без имени автора. В случае если Вы считаете, что Ваши права нарушены, пожалуйста, свяжитесь с владельцем сайта. :: Главная :: ::
|
||||
©KANSoftWare (разработка программного обеспечения, создание программ, создание интерактивных сайтов), 2007 |