mirror of
https://github.com/msgpack/msgpack-c
synced 2026-06-08 16:11:40 +00:00
64 lines
1.3 KiB
C++
64 lines
1.3 KiB
C++
//
|
|
// MessagePack for C++ static resolution routine
|
|
//
|
|
// Copyright (C) 2016 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_V1_ADAPTOR_BASE_DECL_HPP
|
|
#define MSGPACK_V1_ADAPTOR_BASE_DECL_HPP
|
|
|
|
#include "msgpack/versioning.hpp"
|
|
#include "msgpack/object_fwd.hpp"
|
|
|
|
namespace msgpack {
|
|
|
|
/// @cond
|
|
MSGPACK_API_VERSION_NAMESPACE(v1) {
|
|
/// @endcond
|
|
|
|
template <typename Stream>
|
|
class packer;
|
|
|
|
namespace adaptor {
|
|
|
|
// Adaptor functors
|
|
|
|
template <typename T, typename Enabler = void>
|
|
struct convert;
|
|
|
|
template <typename T, typename Enabler = void>
|
|
struct pack;
|
|
|
|
template <typename T, typename Enabler = void>
|
|
struct object;
|
|
|
|
template <typename T, typename Enabler = void>
|
|
struct object_with_zone;
|
|
|
|
} // namespace adaptor
|
|
|
|
// operators
|
|
|
|
template <typename T>
|
|
msgpack::object const& operator>> (msgpack::object const& o, T& v);
|
|
|
|
template <typename Stream, typename T>
|
|
msgpack::packer<Stream>& operator<< (msgpack::packer<Stream>& o, T const& v);
|
|
|
|
template <typename T>
|
|
void operator<< (msgpack::object& o, T const& v);
|
|
|
|
template <typename T>
|
|
void operator<< (msgpack::object::with_zone& o, T const& v);
|
|
|
|
/// @cond
|
|
} // MSGPACK_API_VERSION_NAMESPACE(v1)
|
|
/// @endcond
|
|
|
|
} // namespace msgpack
|
|
|
|
#endif // MSGPACK_V1_ADAPTOR_BASE_DECL_HPP
|