object.hpp 655 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // MessagePack for C++ static resolution routine
  3. //
  4. // Copyright (C) 2016 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_V2_OBJECT_HPP
  11. #define MSGPACK_V2_OBJECT_HPP
  12. #include "msgpack/object_fwd.hpp"
  13. namespace msgpack {
  14. /// @cond
  15. MSGPACK_API_VERSION_NAMESPACE(v2) {
  16. /// @endcond
  17. inline object::implicit_type object::convert() const
  18. {
  19. return v1::object::convert();
  20. }
  21. /// @cond
  22. } // MSGPACK_API_VERSION_NAMESPACE(v2)
  23. /// @endcond
  24. } // namespace msgpack
  25. #endif // MSGPACK_V2_OBJECT_HPP