Hideaki Tai / msgpack-embedded

Dependents:   hello_message_pack

Committer:
hideakitai
Date:
Sat Feb 13 01:53:11 2016 +0000
Revision:
0:3f9dbf1e2cb0
first commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
hideakitai 0:3f9dbf1e2cb0 1 # /* **************************************************************************
hideakitai 0:3f9dbf1e2cb0 2 # * *
hideakitai 0:3f9dbf1e2cb0 3 # * (C) Copyright Paul Mensonides 2002.
hideakitai 0:3f9dbf1e2cb0 4 # * Distributed under the Boost Software License, Version 1.0. (See
hideakitai 0:3f9dbf1e2cb0 5 # * accompanying file LICENSE_1_0.txt or copy at
hideakitai 0:3f9dbf1e2cb0 6 # * http://www.boost.org/LICENSE_1_0.txt)
hideakitai 0:3f9dbf1e2cb0 7 # * *
hideakitai 0:3f9dbf1e2cb0 8 # ************************************************************************** */
hideakitai 0:3f9dbf1e2cb0 9 #
hideakitai 0:3f9dbf1e2cb0 10 # /* See http://www.boost.org for most recent version. */
hideakitai 0:3f9dbf1e2cb0 11 #
hideakitai 0:3f9dbf1e2cb0 12 # ifndef MSGPACK_PREPROCESSOR_SEQ_REST_N_HPP
hideakitai 0:3f9dbf1e2cb0 13 # define MSGPACK_PREPROCESSOR_SEQ_REST_N_HPP
hideakitai 0:3f9dbf1e2cb0 14 #
hideakitai 0:3f9dbf1e2cb0 15 # include <msgpack/preprocessor/arithmetic/inc.hpp>
hideakitai 0:3f9dbf1e2cb0 16 # include <msgpack/preprocessor/config/config.hpp>
hideakitai 0:3f9dbf1e2cb0 17 # include <msgpack/preprocessor/facilities/identity.hpp>
hideakitai 0:3f9dbf1e2cb0 18 # include <msgpack/preprocessor/seq/detail/split.hpp>
hideakitai 0:3f9dbf1e2cb0 19 # include <msgpack/preprocessor/tuple/elem.hpp>
hideakitai 0:3f9dbf1e2cb0 20 #
hideakitai 0:3f9dbf1e2cb0 21 # /* MSGPACK_PP_SEQ_REST_N */
hideakitai 0:3f9dbf1e2cb0 22 #
hideakitai 0:3f9dbf1e2cb0 23 # if ~MSGPACK_PP_CONFIG_FLAGS() & MSGPACK_PP_CONFIG_EDG()
hideakitai 0:3f9dbf1e2cb0 24 # define MSGPACK_PP_SEQ_REST_N(n, seq) MSGPACK_PP_TUPLE_ELEM(2, 1, MSGPACK_PP_SEQ_SPLIT(MSGPACK_PP_INC(n), MSGPACK_PP_IDENTITY( (nil) seq )))()
hideakitai 0:3f9dbf1e2cb0 25 # else
hideakitai 0:3f9dbf1e2cb0 26 # define MSGPACK_PP_SEQ_REST_N(n, seq) MSGPACK_PP_SEQ_REST_N_I(n, seq)
hideakitai 0:3f9dbf1e2cb0 27 # define MSGPACK_PP_SEQ_REST_N_I(n, seq) MSGPACK_PP_TUPLE_ELEM(2, 1, MSGPACK_PP_SEQ_SPLIT(MSGPACK_PP_INC(n), MSGPACK_PP_IDENTITY( (nil) seq )))()
hideakitai 0:3f9dbf1e2cb0 28 # endif
hideakitai 0:3f9dbf1e2cb0 29 #
hideakitai 0:3f9dbf1e2cb0 30 # endif