object_decl.hpp 999 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //
  2. // MessagePack for C++ static resolution routine
  3. //
  4. // Copyright (C) 2018 KONDO Takatoshi
  5. //
  6. // Distributed under the Boost Software License, Version 1.0.
  7. // (See accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef MSGPACK_V3_OBJECT_DECL_HPP
  11. #define MSGPACK_V3_OBJECT_DECL_HPP
  12. #include "msgpack/v2/object_decl.hpp"
  13. #include "msgpack/adaptor/adaptor_base.hpp"
  14. namespace msgpack {
  15. /// @cond
  16. MSGPACK_API_VERSION_NAMESPACE(v3) {
  17. /// @endcond
  18. using v2::object_handle;
  19. namespace detail {
  20. using v2::detail::add_ext_type_size;
  21. } // namespace detail
  22. using v2::aligned_zone_size;
  23. using v2::clone;
  24. namespace detail {
  25. using v2::detail::packer_serializer;
  26. } // namespace detail
  27. using v2::object_parser;
  28. using v2::object_pack_visitor;
  29. using v2::object_stringize_visitor;
  30. using v2::operator==;
  31. using v2::operator!=;
  32. /// @cond
  33. } // MSGPACK_API_VERSION_NAMESPACE(v3)
  34. /// @endcond
  35. } // namespace msgpack
  36. #endif // MSGPACK_V3_OBJECT_DECL_HPP