summaryrefslogtreecommitdiffstats
path: root/third_party/msgpack/include/msgpack/v1/object_decl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/msgpack/include/msgpack/v1/object_decl.hpp')
-rw-r--r--third_party/msgpack/include/msgpack/v1/object_decl.hpp122
1 files changed, 122 insertions, 0 deletions
diff --git a/third_party/msgpack/include/msgpack/v1/object_decl.hpp b/third_party/msgpack/include/msgpack/v1/object_decl.hpp
new file mode 100644
index 0000000000..7f04a543aa
--- /dev/null
+++ b/third_party/msgpack/include/msgpack/v1/object_decl.hpp
@@ -0,0 +1,122 @@
+//
+// 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_V1_OBJECT_DECL_HPP
+#define MSGPACK_V1_OBJECT_DECL_HPP
+
+#include "msgpack/versioning.hpp"
+#include "msgpack/pack.hpp"
+#include "msgpack/zone.hpp"
+#include "msgpack/adaptor/adaptor_base.hpp"
+
+#include <cstring>
+#include <stdexcept>
+#include <typeinfo>
+#include <limits>
+#include <ostream>
+#include <typeinfo>
+#include <iomanip>
+
+namespace msgpack {
+
+/// @cond
+MSGPACK_API_VERSION_NAMESPACE(v1) {
+/// @endcond
+
+/// The class holds object and zone
+class object_handle;
+
+namespace detail {
+
+template <std::size_t N>
+std::size_t add_ext_type_size(std::size_t size);
+
+template <>
+std::size_t add_ext_type_size<4>(std::size_t size);
+
+} // namespace detail
+
+std::size_t aligned_zone_size(msgpack::object const& obj);
+
+/// clone object
+/**
+ * Clone (deep copy) object.
+ * The copied object is located on newly allocated zone.
+ * @param obj copy source object
+ *
+ * @return object_handle that holds deep copied object and zone.
+ */
+object_handle clone(msgpack::object const& obj);
+
+namespace detail {
+
+template <typename Stream, typename T>
+struct packer_serializer;
+
+} // namespace detail
+
+// obsolete
+template <typename Type>
+class define;
+
+bool operator==(const msgpack::object& x, const msgpack::object& y);
+
+template <typename T>
+bool operator==(const msgpack::object& x, const T& y);
+
+bool operator!=(const msgpack::object& x, const msgpack::object& y);
+
+template <typename T>
+bool operator==(const T& y, const msgpack::object& x);
+
+template <typename T>
+bool operator!=(const msgpack::object& x, const T& y);
+
+template <typename T>
+bool operator!=(const T& y, const msgpack::object& x);
+
+void operator<< (msgpack::object& o, const msgpack_object& v);
+
+class object_parser;
+
+template <typename Stream>
+struct object_pack_visitor;
+
+struct object_stringize_visitor;
+
+// obsolete
+template <typename T>
+MSGPACK_DEPRECATED("please use member function version of object::convert(T&)")
+void convert(T& v, msgpack::object const& o);
+
+// obsolete
+template <typename Stream, typename T>
+MSGPACK_DEPRECATED("please use member function version of packer::pack(const T&)")
+void pack(msgpack::packer<Stream>& o, const T& v);
+
+// obsolete
+template <typename Stream, typename T>
+MSGPACK_DEPRECATED("please use member function version of packer::pack(const T&)")
+void pack_copy(msgpack::packer<Stream>& o, T v);
+
+template <typename Stream>
+msgpack::packer<Stream>& operator<< (msgpack::packer<Stream>& o, const msgpack::object& v);
+
+template <typename Stream>
+msgpack::packer<Stream>& operator<< (msgpack::packer<Stream>& o, const msgpack::object::with_zone& v);
+
+std::ostream& operator<< (std::ostream& s, const msgpack::object& v);
+
+/// @cond
+} // MSGPACK_API_VERSION_NAMESPACE(v1)
+/// @endcond
+
+} // namespace msgpack
+
+#endif // MSGPACK_V1_OBJECT_DECL_HPP