Sha256: 1b7e04253015410886dece82f5a4c41e02528a03ce0a6f526a9dafd2db023599
Contents?: true
Size: 1.75 KB
Versions: 12
Compression:
Stored size: 1.75 KB
Contents
// // MessagePack for C++ static resolution routine // // Copyright (C) 2008-2016 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_FWD_DECL_HPP #define MSGPACK_V1_OBJECT_FWD_DECL_HPP #include "msgpack/versioning.hpp" #include "msgpack/zone.hpp" #include "msgpack/object.h" #include <typeinfo> namespace msgpack { /// @cond MSGPACK_API_VERSION_NAMESPACE(v1) { /// @endcond namespace type { enum object_type { NIL = MSGPACK_OBJECT_NIL, BOOLEAN = MSGPACK_OBJECT_BOOLEAN, POSITIVE_INTEGER = MSGPACK_OBJECT_POSITIVE_INTEGER, NEGATIVE_INTEGER = MSGPACK_OBJECT_NEGATIVE_INTEGER, FLOAT = MSGPACK_OBJECT_FLOAT, #if defined(MSGPACK_USE_LEGACY_NAME_AS_FLOAT) DOUBLE = MSGPACK_OBJECT_DOUBLE, // obsolete #endif // MSGPACK_USE_LEGACY_NAME_AS_FLOAT STR = MSGPACK_OBJECT_STR, BIN = MSGPACK_OBJECT_BIN, ARRAY = MSGPACK_OBJECT_ARRAY, MAP = MSGPACK_OBJECT_MAP, EXT = MSGPACK_OBJECT_EXT }; } struct object; struct object_kv; struct object_array; struct object_map; struct object_str; struct object_bin; struct object_ext; #if !defined(MSGPACK_USE_CPP03) namespace adaptor { template <typename T, typename Enabler = void> struct as; } // namespace adaptor template <typename T> struct has_as; #endif // !defined(MSGPACK_USE_CPP03) class type_error; /// @cond } // MSGPACK_API_VERSION_NAMESPACE(v1) /// @endcond } // namespace msgpack #endif // MSGPACK_V1_OBJECT_FWD_DECL_HPP
Version data entries
12 entries across 12 versions & 1 rubygems