]> git.lyx.org Git - lyx.git/blob - boost/boost/preprocessor/list/enum.hpp
update boost to pre-1.30.0
[lyx.git] / boost / boost / preprocessor / list / enum.hpp
1 # /* Copyright (C) 2001
2 #  * Housemarque Oy
3 #  * http://www.housemarque.com
4 #  *
5 #  * Permission to copy, use, modify, sell and distribute this software is
6 #  * granted provided this copyright notice appears in all copies. This
7 #  * software is provided "as is" without express or implied warranty, and
8 #  * with no claim as to its suitability for any purpose.
9 #  */
10 #
11 # /* Revised by Paul Mensonides (2002) */
12 #
13 # /* See http://www.boost.org for most recent version. */
14 #
15 # ifndef BOOST_PREPROCESSOR_LIST_ENUM_HPP
16 # define BOOST_PREPROCESSOR_LIST_ENUM_HPP
17 #
18 # include <boost/preprocessor/config/config.hpp>
19 # include <boost/preprocessor/list/for_each_i.hpp>
20 # include <boost/preprocessor/punctuation/comma_if.hpp>
21 #
22 # /* BOOST_PP_LIST_ENUM */
23 #
24 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()
25 #    define BOOST_PP_LIST_ENUM(list) BOOST_PP_LIST_FOR_EACH_I(BOOST_PP_LIST_ENUM_O, BOOST_PP_NIL, list)
26 # else
27 #    define BOOST_PP_LIST_ENUM(list) BOOST_PP_LIST_ENUM_I(list)
28 #    define BOOST_PP_LIST_ENUM_I(list) BOOST_PP_LIST_FOR_EACH_I(BOOST_PP_LIST_ENUM_O, BOOST_PP_NIL, list)
29 # endif
30 #
31 # define BOOST_PP_LIST_ENUM_O(r, _, i, elem) BOOST_PP_COMMA_IF(i) elem
32 #
33 # /* BOOST_PP_LIST_ENUM_R */
34 #
35 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()
36 #    define BOOST_PP_LIST_ENUM_R(r, list) BOOST_PP_LIST_FOR_EACH_I_R(r, BOOST_PP_LIST_ENUM_O, BOOST_PP_NIL, list)
37 # else
38 #    define BOOST_PP_LIST_ENUM_R(r, list) BOOST_PP_LIST_ENUM_R_I(r, list)
39 #    define BOOST_PP_LIST_ENUM_R_I(r, list) BOOST_PP_LIST_FOR_EACH_I_R(r, BOOST_PP_LIST_ENUM_O, BOOST_PP_NIL, list)
40 # endif
41 #
42 # endif