Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: hello_message_pack
include/msgpack/adaptor/msgpack_tuple.hpp@0:3f9dbf1e2cb0, 2016-02-13 (annotated)
- Committer:
- hideakitai
- Date:
- Sat Feb 13 01:53:11 2016 +0000
- Revision:
- 0:3f9dbf1e2cb0
first commit
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| hideakitai | 0:3f9dbf1e2cb0 | 1 | // |
| hideakitai | 0:3f9dbf1e2cb0 | 2 | // MessagePack for C++ static resolution routine |
| hideakitai | 0:3f9dbf1e2cb0 | 3 | // |
| hideakitai | 0:3f9dbf1e2cb0 | 4 | // Copyright (C) 2008-2014 FURUHASHI Sadayuki and KONDO Takatoshi |
| hideakitai | 0:3f9dbf1e2cb0 | 5 | // |
| hideakitai | 0:3f9dbf1e2cb0 | 6 | // Distributed under the Boost Software License, Version 1.0. |
| hideakitai | 0:3f9dbf1e2cb0 | 7 | // (See accompanying file LICENSE_1_0.txt or copy at |
| hideakitai | 0:3f9dbf1e2cb0 | 8 | // http://www.boost.org/LICENSE_1_0.txt) |
| hideakitai | 0:3f9dbf1e2cb0 | 9 | // |
| hideakitai | 0:3f9dbf1e2cb0 | 10 | #ifndef MSGPACK_MSGPACK_TUPLE_HPP |
| hideakitai | 0:3f9dbf1e2cb0 | 11 | #define MSGPACK_MSGPACK_TUPLE_HPP |
| hideakitai | 0:3f9dbf1e2cb0 | 12 | |
| hideakitai | 0:3f9dbf1e2cb0 | 13 | #include "msgpack/cpp_config.hpp" |
| hideakitai | 0:3f9dbf1e2cb0 | 14 | |
| hideakitai | 0:3f9dbf1e2cb0 | 15 | #if defined(MSGPACK_USE_CPP03) |
| hideakitai | 0:3f9dbf1e2cb0 | 16 | #include "detail/cpp03_msgpack_tuple.hpp" |
| hideakitai | 0:3f9dbf1e2cb0 | 17 | #else // MSGPACK_USE_CPP03 |
| hideakitai | 0:3f9dbf1e2cb0 | 18 | #include "detail/cpp11_msgpack_tuple.hpp" |
| hideakitai | 0:3f9dbf1e2cb0 | 19 | #endif // MSGPACK_USE_CPP03 |
| hideakitai | 0:3f9dbf1e2cb0 | 20 | |
| hideakitai | 0:3f9dbf1e2cb0 | 21 | #endif // MSGPACK_MSGPACK_TUPLE_HPP |