epoc32/include/stdapis/boost/preprocessor/cat.hpp
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
williamr@4
     1
# /* Copyright (C) 2001
williamr@4
     2
#  * Housemarque Oy
williamr@4
     3
#  * http://www.housemarque.com
williamr@4
     4
#  *
williamr@4
     5
#  * Distributed under the Boost Software License, Version 1.0. (See
williamr@4
     6
#  * accompanying file LICENSE_1_0.txt or copy at
williamr@4
     7
#  * http://www.boost.org/LICENSE_1_0.txt)
williamr@4
     8
#  */
williamr@4
     9
#
williamr@4
    10
# /* Revised by Paul Mensonides (2002) */
williamr@2
    11
#
williamr@2
    12
# /* See http://www.boost.org for most recent version. */
williamr@2
    13
#
williamr@4
    14
# ifndef BOOST_PREPROCESSOR_CAT_HPP
williamr@4
    15
# define BOOST_PREPROCESSOR_CAT_HPP
williamr@2
    16
#
williamr@2
    17
# include <boost/preprocessor/config/config.hpp>
williamr@2
    18
#
williamr@4
    19
# /* BOOST_PP_CAT */
williamr@2
    20
#
williamr@4
    21
# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MWCC()
williamr@4
    22
#    define BOOST_PP_CAT(a, b) BOOST_PP_CAT_I(a, b)
williamr@4
    23
# else
williamr@4
    24
#    define BOOST_PP_CAT(a, b) BOOST_PP_CAT_OO((a, b))
williamr@4
    25
#    define BOOST_PP_CAT_OO(par) BOOST_PP_CAT_I ## par
williamr@4
    26
# endif
williamr@2
    27
#
williamr@4
    28
# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC()
williamr@4
    29
#    define BOOST_PP_CAT_I(a, b) a ## b
williamr@4
    30
# else
williamr@4
    31
#    define BOOST_PP_CAT_I(a, b) BOOST_PP_CAT_II(a ## b)
williamr@4
    32
#    define BOOST_PP_CAT_II(res) res
williamr@4
    33
# endif
williamr@2
    34
#
williamr@2
    35
# endif