/** Generates a comma separated list of parameters.
In other words, expands to the sequence:
\verbatim
P##0, P##1, ..., P##N-1
\endverbatim
Uses
- BOOST_PP_REPEAT()
*/
#define BOOST_PP_ENUM_PARAMS(N,P) BOOST_PP_ENUM(N,BOOST_PP_ENUM_PARAMS_F,P)
#ifndef DOXYGEN_SHOULD_SKIP_THIS
#define BOOST_PP_ENUM_PARAMS_F(I,P) BOOST_PP_CAT(P,I)
#endif
/** Obsolete. Use BOOST_PP_ENUM_PARAMS(). */
#define BOOST_PREPROCESSOR_ENUM_PARAMS(N,P) BOOST_PP_ENUM_PARAMS(N,P)
#endif