messagepack implementation for embedded systems (mbed / arduino)

Dependents:   hello_message_pack

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers to_list.hpp Source File

to_list.hpp

00001 # /* **************************************************************************
00002 #  *                                                                          *
00003 #  *     (C) Copyright Edward Diener 2011.                                    *
00004 #  *     (C) Copyright Paul Mensonides 2011.                                  *
00005 #  *     Distributed under the Boost Software License, Version 1.0. (See      *
00006 #  *     accompanying file LICENSE_1_0.txt or copy at                         *
00007 #  *     http://www.boost.org/LICENSE_1_0.txt)                                *
00008 #  *                                                                          *
00009 #  ************************************************************************** */
00010 #
00011 # /* See http://www.boost.org for most recent version. */
00012 #
00013 # ifndef MSGPACK_PREPROCESSOR_VARIADIC_TO_LIST_HPP
00014 # define MSGPACK_PREPROCESSOR_VARIADIC_TO_LIST_HPP
00015 #
00016 # include <msgpack/preprocessor/config/config.hpp>
00017 # include <msgpack/preprocessor/tuple/to_list.hpp>
00018 #
00019 # /* MSGPACK_PP_VARIADIC_TO_LIST */
00020 #
00021 # if MSGPACK_PP_VARIADICS
00022 #    define MSGPACK_PP_VARIADIC_TO_LIST(...) MSGPACK_PP_TUPLE_TO_LIST((__VA_ARGS__))
00023 # endif
00024 #
00025 # endif