mirror of
https://github.com/msgpack/msgpack-c
synced 2026-06-08 16:11:40 +00:00
ba15089d86
Updated the license from the license from the Apache License Version 2.0 to the Boost Software License, Version 1.0. Removed unused files.
22 lines
604 B
C++
22 lines
604 B
C++
//
|
|
// MessagePack for C++ static resolution routine
|
|
//
|
|
// Copyright (C) 2008-2014 FURUHASHI Sadayuki and KONDO Takatoshi
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
#ifndef MSGPACK_MSGPACK_TUPLE_HPP
|
|
#define MSGPACK_MSGPACK_TUPLE_HPP
|
|
|
|
#include "msgpack/cpp_config.hpp"
|
|
|
|
#if defined(MSGPACK_USE_CPP03)
|
|
#include "detail/cpp03_msgpack_tuple.hpp"
|
|
#else // MSGPACK_USE_CPP03
|
|
#include "detail/cpp11_msgpack_tuple.hpp"
|
|
#endif // MSGPACK_USE_CPP03
|
|
|
|
#endif // MSGPACK_MSGPACK_TUPLE_HPP
|