1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
| # /* Copyright (C) 2001
| # * Housemarque Oy
| # * http://www.housemarque.com
| # *
| # * Distributed under the Boost Software License, Version 1.0. (See
| # * accompanying file LICENSE_1_0.txt or copy at
| # * http://www.boost.org/LICENSE_1_0.txt)
| # */
| #
| # /* Revised by Paul Mensonides (2002) */
| #
| # /* See http://www.boost.org for most recent version. */
| #
| # ifndef BOOST_PREPROCESSOR_REPETITION_ENUM_HPP
| # define BOOST_PREPROCESSOR_REPETITION_ENUM_HPP
| #
| # include <boost/preprocessor/cat.hpp>
| # include <boost/preprocessor/config/config.hpp>
| # include <boost/preprocessor/debug/error.hpp>
| # include <boost/preprocessor/detail/auto_rec.hpp>
| # include <boost/preprocessor/punctuation/comma_if.hpp>
| # include <boost/preprocessor/repetition/repeat.hpp>
| # include <boost/preprocessor/tuple/elem.hpp>
| # include <boost/preprocessor/tuple/rem.hpp>
| #
| # /* BOOST_PP_ENUM */
| #
| # if 0
| # define BOOST_PP_ENUM(count, macro, data)
| # endif
| #
| # define BOOST_PP_ENUM BOOST_PP_CAT(BOOST_PP_ENUM_, BOOST_PP_AUTO_REC(BOOST_PP_REPEAT_P, 4))
| #
| # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()
| # define BOOST_PP_ENUM_1(c, m, d) BOOST_PP_REPEAT_1(c, BOOST_PP_ENUM_M_1, (m, d))
| # define BOOST_PP_ENUM_2(c, m, d) BOOST_PP_REPEAT_2(c, BOOST_PP_ENUM_M_2, (m, d))
| # define BOOST_PP_ENUM_3(c, m, d) BOOST_PP_REPEAT_3(c, BOOST_PP_ENUM_M_3, (m, d))
| # else
| # define BOOST_PP_ENUM_1(c, m, d) BOOST_PP_ENUM_1_I(c, m, d)
| # define BOOST_PP_ENUM_2(c, m, d) BOOST_PP_ENUM_2_I(c, m, d)
| # define BOOST_PP_ENUM_3(c, m, d) BOOST_PP_ENUM_3_I(c, m, d)
| # define BOOST_PP_ENUM_1_I(c, m, d) BOOST_PP_REPEAT_1(c, BOOST_PP_ENUM_M_1, (m, d))
| # define BOOST_PP_ENUM_2_I(c, m, d) BOOST_PP_REPEAT_2(c, BOOST_PP_ENUM_M_2, (m, d))
| # define BOOST_PP_ENUM_3_I(c, m, d) BOOST_PP_REPEAT_3(c, BOOST_PP_ENUM_M_3, (m, d))
| # endif
| #
| # define BOOST_PP_ENUM_4(c, m, d) BOOST_PP_ERROR(0x0003)
| #
| # if BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_STRICT()
| # define BOOST_PP_ENUM_M_1(z, n, md) BOOST_PP_ENUM_M_1_IM(z, n, BOOST_PP_TUPLE_REM_2 md)
| # define BOOST_PP_ENUM_M_2(z, n, md) BOOST_PP_ENUM_M_2_IM(z, n, BOOST_PP_TUPLE_REM_2 md)
| # define BOOST_PP_ENUM_M_3(z, n, md) BOOST_PP_ENUM_M_3_IM(z, n, BOOST_PP_TUPLE_REM_2 md)
| # define BOOST_PP_ENUM_M_1_IM(z, n, im) BOOST_PP_ENUM_M_1_I(z, n, im)
| # define BOOST_PP_ENUM_M_2_IM(z, n, im) BOOST_PP_ENUM_M_2_I(z, n, im)
| # define BOOST_PP_ENUM_M_3_IM(z, n, im) BOOST_PP_ENUM_M_3_I(z, n, im)
| # else
| # define BOOST_PP_ENUM_M_1(z, n, md) BOOST_PP_ENUM_M_1_I(z, n, BOOST_PP_TUPLE_ELEM(2, 0, md), BOOST_PP_TUPLE_ELEM(2, 1, md))
| # define BOOST_PP_ENUM_M_2(z, n, md) BOOST_PP_ENUM_M_2_I(z, n, BOOST_PP_TUPLE_ELEM(2, 0, md), BOOST_PP_TUPLE_ELEM(2, 1, md))
| # define BOOST_PP_ENUM_M_3(z, n, md) BOOST_PP_ENUM_M_3_I(z, n, BOOST_PP_TUPLE_ELEM(2, 0, md), BOOST_PP_TUPLE_ELEM(2, 1, md))
| # endif
| #
| # define BOOST_PP_ENUM_M_1_I(z, n, m, d) BOOST_PP_COMMA_IF(n) m(z, n, d)
| # define BOOST_PP_ENUM_M_2_I(z, n, m, d) BOOST_PP_COMMA_IF(n) m(z, n, d)
| # define BOOST_PP_ENUM_M_3_I(z, n, m, d) BOOST_PP_COMMA_IF(n) m(z, n, d)
| #
| # endif
|
|