blob: effd37703b47036cc8cf0f1a989c6442d60a6e28 [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001# /* Copyright (C) 2001
2# * Housemarque Oy
3# * http://www.housemarque.com
4# *
5# * Distributed under the Boost Software License, Version 1.0. (See
6# * accompanying file LICENSE_1_0.txt or copy at
7# * http://www.boost.org/LICENSE_1_0.txt)
8# */
9#
10# /* Revised by Paul Mensonides (2002) */
11#
12# /* See http://www.boost.org for most recent version. */
13#
Jeff Thompson3d613fd2013-10-15 15:39:04 -070014# ifndef NDNBOOST_PREPROCESSOR_REPETITION_ENUM_PARAMS_WITH_A_DEFAULT_HPP
15# define NDNBOOST_PREPROCESSOR_REPETITION_ENUM_PARAMS_WITH_A_DEFAULT_HPP
Jeff Thompsona28eed82013-08-22 16:21:10 -070016#
17# include <ndnboost/preprocessor/config/config.hpp>
18# include <ndnboost/preprocessor/facilities/intercept.hpp>
19# include <ndnboost/preprocessor/repetition/enum_binary_params.hpp>
20#
Jeff Thompson3d613fd2013-10-15 15:39:04 -070021# /* NDNBOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT */
Jeff Thompsona28eed82013-08-22 16:21:10 -070022#
Jeff Thompson3d613fd2013-10-15 15:39:04 -070023# define NDNBOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(count, param, def) NDNBOOST_PP_ENUM_BINARY_PARAMS(count, param, = def NDNBOOST_PP_INTERCEPT)
Jeff Thompsona28eed82013-08-22 16:21:10 -070024#
25# endif