Chris@16: // (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com) Chris@16: // (C) Copyright 2003-2007 Jonathan Turkanis Chris@16: // Distributed under the Boost Software License, Version 1.0. (See accompanying Chris@16: // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) Chris@16: Chris@16: // See http://www.boost.org/libs/iostreams for documentation. Chris@16: Chris@16: #ifndef BOOST_IOSTREAMS_DETAIL_TEMPLATE_PARAMS_HPP_INCLUDED Chris@16: Chris@16: #include Chris@16: #include Chris@16: #include Chris@16: Chris@16: #define BOOST_IOSTREAMS_TEMPLATE_PARAMS(arity, param) \ Chris@16: BOOST_PP_EXPR_IF(arity, template<) \ Chris@16: BOOST_PP_ENUM_PARAMS(arity, typename param) \ Chris@16: BOOST_PP_EXPR_IF(arity, >) \ Chris@16: /**/ Chris@16: Chris@16: #define BOOST_IOSTREAMS_TEMPLATE_ARGS(arity, param) \ Chris@16: BOOST_PP_EXPR_IF(arity, <) \ Chris@16: BOOST_PP_ENUM_PARAMS(arity, param) \ Chris@16: BOOST_PP_EXPR_IF(arity, >) \ Chris@16: /**/ Chris@16: Chris@16: #endif // #ifndef BOOST_IOSTREAMS_DETAIL_BUFFERS_HPP_INCLUDED