1234567891011121314151617181920212223242526 |
- #ifndef BOOST_IOSTREAMS_DETAIL_TEMPLATE_PARAMS_HPP_INCLUDED
- #include <boost/preprocessor/control/expr_if.hpp>
- #include <boost/preprocessor/control/if.hpp>
- #include <boost/preprocessor/repetition/enum_params.hpp>
- #define BOOST_IOSTREAMS_TEMPLATE_PARAMS(arity, param) \
- BOOST_PP_EXPR_IF(arity, template<) \
- BOOST_PP_ENUM_PARAMS(arity, typename param) \
- BOOST_PP_EXPR_IF(arity, >) \
-
- #define BOOST_IOSTREAMS_TEMPLATE_ARGS(arity, param) \
- BOOST_PP_EXPR_IF(arity, <) \
- BOOST_PP_ENUM_PARAMS(arity, param) \
- BOOST_PP_EXPR_IF(arity, >) \
-
- #endif
|